Exception: RandomGem::Error

Inherits:
StandardError
  • Object
show all
Defined in:
lib/random_gem.rb

Instance Method Summary collapse

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