Exception: Bijou::EvalError
- Inherits:
-
Exception
- Object
- Exception
- Bijou::EvalError
- Defined in:
- lib/bijou/exception.rb
Instance Attribute Summary collapse
-
#cachename ⇒ Object
readonly
Returns the value of attribute cachename.
-
#cause ⇒ Object
readonly
Returns the value of attribute cause.
-
#filename ⇒ Object
readonly
Returns the value of attribute filename.
Instance Method Summary collapse
-
#initialize(filename, cachename, cause) ⇒ EvalError
constructor
The cause is used to capture the text of the originating exeception.
Constructor Details
#initialize(filename, cachename, cause) ⇒ EvalError
The cause is used to capture the text of the originating exeception.
33 34 35 36 37 |
# File 'lib/bijou/exception.rb', line 33 def initialize(filename, cachename, cause) @filename = filename @cachename = cachename @cause = cause end |
Instance Attribute Details
#cachename ⇒ Object (readonly)
Returns the value of attribute cachename.
30 31 32 |
# File 'lib/bijou/exception.rb', line 30 def cachename @cachename end |
#cause ⇒ Object (readonly)
Returns the value of attribute cause.
30 31 32 |
# File 'lib/bijou/exception.rb', line 30 def cause @cause end |
#filename ⇒ Object (readonly)
Returns the value of attribute filename.
30 31 32 |
# File 'lib/bijou/exception.rb', line 30 def filename @filename end |