Class: Rack::ECG::Check::Error
- Defined in:
- lib/rack/ecg/check/error.rb
Constant Summary collapse
- STATIC_PARAMETERS =
{ name: :error, success: false, value: "PC LOAD LETTER", }.freeze
Instance Method Summary collapse
-
#initialize ⇒ Error
constructor
Always returns a basic error for testing purposes.
Methods inherited from Static
Constructor Details
#initialize ⇒ Error
Always returns a basic error for testing purposes.
10 11 12 13 14 15 16 17 18 19 20 |
# File 'lib/rack/ecg/check/error.rb', line 10 class Error < Static STATIC_PARAMETERS = { name: :error, success: false, value: "PC LOAD LETTER", }.freeze def initialize super(STATIC_PARAMETERS) end end |