class Reivt::GraphQLValidationException

Custom errors for dealing with graphql in revit

@author [bwrnrclse]

Public Class Methods

new(msg = 'Error in GraphQL Validation!') click to toggle source
Calls superclass method
# File lib/reivt/exception.rb, line 37
def initialize(msg = 'Error in GraphQL Validation!')
  msg = "GraphQLValidationException:\n" + msg + "\nVisit here for more " \
      "info => #{Paint['link.vaemoi.co/revitgqve', :yellow]}"
  super(msg)
end