Exception: ClientAuth::Errors::InternalServerError
- Defined in:
- lib/client_auth/models/errors/internal_server_error.rb
Instance Attribute Summary
Attributes inherited from BaseError
Instance Method Summary collapse
-
#initialize(message = 'Internal server error') ⇒ InternalServerError
constructor
A new instance of InternalServerError.
Methods inherited from BaseError
Constructor Details
#initialize(message = 'Internal server error') ⇒ InternalServerError
Returns a new instance of InternalServerError.
4 5 6 7 8 |
# File 'lib/client_auth/models/errors/internal_server_error.rb', line 4 def initialize( = 'Internal server error') @status = 500 @title = self.class.name @detail = end |