Exception: PgLdapSync::ApplicationExit
- Inherits:
-
RuntimeError
- Object
- RuntimeError
- PgLdapSync::ApplicationExit
- Defined in:
- lib/pgls.rb
Direct Known Subclasses
Instance Attribute Summary collapse
-
#exitcode ⇒ Object
readonly
Returns the value of attribute exitcode.
Instance Method Summary collapse
-
#initialize(exitcode, error = nil) ⇒ ApplicationExit
constructor
A new instance of ApplicationExit.
Constructor Details
#initialize(exitcode, error = nil) ⇒ ApplicationExit
Returns a new instance of ApplicationExit.
12 13 14 15 |
# File 'lib/pgls.rb', line 12 def initialize(exitcode, error=nil) super(error) @exitcode = exitcode end |
Instance Attribute Details
#exitcode ⇒ Object (readonly)
Returns the value of attribute exitcode.
10 11 12 |
# File 'lib/pgls.rb', line 10 def exitcode @exitcode end |