Exception: Ice::FileException
- Inherits:
-
SyscallException
- Object
- StandardError
- Exception
- LocalException
- SyscallException
- Ice::FileException
- Defined in:
- lib/Ice/LocalException.rb
Instance Attribute Summary collapse
-
#path ⇒ Object
Returns the value of attribute path.
Attributes inherited from SyscallException
Instance Method Summary collapse
-
#initialize(error = 0, path = '') ⇒ FileException
constructor
A new instance of FileException.
- #to_s ⇒ Object
Methods inherited from Exception
Constructor Details
#initialize(error = 0, path = '') ⇒ FileException
Returns a new instance of FileException.
481 482 483 484 |
# File 'lib/Ice/LocalException.rb', line 481 def initialize(error=0, path='') super(error) @path = path end |
Instance Attribute Details
#path ⇒ Object
Returns the value of attribute path.
490 491 492 |
# File 'lib/Ice/LocalException.rb', line 490 def path @path end |
Instance Method Details
#to_s ⇒ Object
486 487 488 |
# File 'lib/Ice/LocalException.rb', line 486 def to_s '::Ice::FileException' end |