class NotionAPI::Core::InvalidClientInstantiationError

Public Class Methods

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