Exception: Gaah::HTTPUnauthorized
- Inherits:
-
StandardError
- Object
- StandardError
- Gaah::HTTPUnauthorized
- Defined in:
- lib/gaah/exceptions.rb
Instance Method Summary collapse
-
#initialize(msg = nil) ⇒ HTTPUnauthorized
constructor
A new instance of HTTPUnauthorized.
Constructor Details
#initialize(msg = nil) ⇒ HTTPUnauthorized
Returns a new instance of HTTPUnauthorized.
10 11 12 13 |
# File 'lib/gaah/exceptions.rb', line 10 def initialize(msg = nil) info = "This domain or user does not support Google Apps" super("#{info}#{msg.nil? ? '.' : ': '}#{msg}") end |