class Utils::SchemaTypeError

Public Class Methods

new(msg = "Custom exception that is raised when an invalid property type is passed as a mapping.", exception_type = "schema_type") click to toggle source
Calls superclass method
# File lib/notion_api/utils.rb, line 676
def initialize(msg = "Custom exception that is raised when an invalid property type is passed as a mapping.", exception_type = "schema_type")
  @exception_type = exception_type
  super(msg)
end