class Reivt::GraphQLDataException

Custom errors for dealing with graphql in revit

@author [bwrnrclse]

Public Class Methods

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