Exception: BPM::Error
- Inherits:
-
StandardError
- Object
- StandardError
- BPM::Error
- Defined in:
- lib/bpm/errors.rb
Direct Known Subclasses
CircularDependencyError, InvalidPackageError, PackageConflictError, PackageNotFoundError, TooManyTransportsError
Instance Method Summary collapse
- #format_message(*args) ⇒ Object
-
#initialize(*args) ⇒ Error
constructor
A new instance of Error.
Constructor Details
#initialize(*args) ⇒ Error
Returns a new instance of Error.
9 10 11 |
# File 'lib/bpm/errors.rb', line 9 def initialize(*args) super (*args) end |
Instance Method Details
#format_message(*args) ⇒ Object
5 6 7 |
# File 'lib/bpm/errors.rb', line 5 def (*args) args.join "," end |