Exception: UsageError

Inherits:
RuntimeError
  • Object
show all
Defined in:
exceptions.rb

Overview

Raised when a command is used wrong.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(reason = nil) ⇒ UsageError

Returns a new instance of UsageError.



11
12
13
14
15
# File 'exceptions.rb', line 11

def initialize(reason = nil)
  super

  @reason = reason
end

Instance Attribute Details

#reasonObject (readonly)

Returns the value of attribute reason.



9
10
11
# File 'exceptions.rb', line 9

def reason
  @reason
end

Instance Method Details

#to_sString

Returns:



18
19
20
21
22
# File 'exceptions.rb', line 18

def to_s
  s = "Invalid usage"
  s += ": #{reason}" if reason
  s
end