Class: LanguageOperator::CLI::Errors::ValidationError

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

Overview

Validation or configuration error (exit code 3)

Instance Attribute Summary

Attributes inherited from ThorCompatibleError

#exit_code

Instance Method Summary collapse

Constructor Details

#initialize(message = nil) ⇒ ValidationError

Returns a new instance of ValidationError.



28
29
30
# File 'lib/language_operator/cli/errors/thor_errors.rb', line 28

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