Exception: RandomGem::Error
- Inherits:
-
StandardError
- Object
- StandardError
- RandomGem::Error
- Defined in:
- lib/random_gem.rb
Instance Method Summary collapse
-
#initialize(msg: nil) ⇒ Error
constructor
A new instance of Error.
Constructor Details
#initialize(msg: nil) ⇒ Error
Returns a new instance of Error.
7 8 9 10 |
# File 'lib/random_gem.rb', line 7 def initialize(msg: nil) msg ||= "An unexpected error occured. Please try again later." super(msg) end |