Exception: Exceptions::Notion::InvalidDatabaseId

Inherits:
StandardError
  • Object
show all
Defined in:
lib/bas/fetcher/notion/exceptions/invalid_database_id.rb

Overview

Provides a domain-specific representation for errors that occurs when an invalid database id is provided for a Notion-related operation.

Instance Method Summary collapse

Constructor Details

#initialize(message = "The provided id doesn't match any database.") ⇒ InvalidDatabaseId

Returns a new instance of InvalidDatabaseId.



10
11
12
# File 'lib/bas/fetcher/notion/exceptions/invalid_database_id.rb', line 10

def initialize(message = "The provided id doesn't match any database.")
  super(message)
end