Exception: CampoInvalido
- Inherits:
-
StandardError
- Object
- StandardError
- CampoInvalido
- Defined in:
- lib/exceptions/campoInvalido.rb
Instance Attribute Summary collapse
-
#campo ⇒ Object
Returns the value of attribute campo.
-
#motivo ⇒ Object
Returns the value of attribute motivo.
Instance Method Summary collapse
-
#initialize(campo, motivo) ⇒ CampoInvalido
constructor
A new instance of CampoInvalido.
Constructor Details
#initialize(campo, motivo) ⇒ CampoInvalido
Returns a new instance of CampoInvalido.
5 6 7 8 |
# File 'lib/exceptions/campoInvalido.rb', line 5 def initialize(campo, motivo) @campo = campo @motivo = motivo end |
Instance Attribute Details
#campo ⇒ Object
Returns the value of attribute campo.
3 4 5 |
# File 'lib/exceptions/campoInvalido.rb', line 3 def campo @campo end |
#motivo ⇒ Object
Returns the value of attribute motivo.
3 4 5 |
# File 'lib/exceptions/campoInvalido.rb', line 3 def motivo @motivo end |