Class: LanguageOperator::CLI::Errors::NotFoundError

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

Overview

Resource not found error (exit code 2)

Instance Attribute Summary

Attributes inherited from ThorCompatibleError

#exit_code

Instance Method Summary collapse

Constructor Details

#initialize(message = nil) ⇒ NotFoundError

Returns a new instance of NotFoundError.



21
22
23
# File 'lib/language_operator/cli/errors/thor_errors.rb', line 21

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