Exception: Psych::Pure::InternalException

Inherits:
Exception
  • Object
show all
Defined in:
lib/psych/pure.rb

Overview

An internal exception is an exception that should not have occurred. It is effectively an assertion.

Instance Method Summary collapse

Constructor Details

#initialize(message = "An internal exception occurred") ⇒ InternalException

Returns a new instance of InternalException.



36
37
38
# File 'lib/psych/pure.rb', line 36

def initialize(message = "An internal exception occurred")
  super(message)
end