Class: LanguageOperator::CLI::Errors::AuthError

Inherits:
ThorCompatibleError show all
Defined in:
lib/language_operator/cli/errors/thor_errors.rb

Overview

Authentication or authorization error (exit code 5)

Instance Attribute Summary

Attributes inherited from ThorCompatibleError

#exit_code

Instance Method Summary collapse

Constructor Details

#initialize(message = nil) ⇒ AuthError

Returns a new instance of AuthError.



42
43
44
# File 'lib/language_operator/cli/errors/thor_errors.rb', line 42

def initialize(message = nil)
  super(message, 5)
end