Module: ChattyError
- Defined in:
- lib/chatty_error.rb,
lib/chatty_error/version.rb,
lib/chatty_error/configuration.rb
Defined Under Namespace
Modules: ClassMethods
Classes: Configuration
Constant Summary
collapse
- VERSION =
"1.0.0"
Class Method Summary
collapse
Instance Method Summary
collapse
Class Method Details
.included(klass) ⇒ Object
Instance Method Details
#cause ⇒ Object
6
7
8
|
# File 'lib/chatty_error.rb', line 6
def cause
@cause
end
|
#cause=(cause) ⇒ Object
10
11
12
|
# File 'lib/chatty_error.rb', line 10
def cause=(cause)
@cause = cause
end
|
#options ⇒ Object
14
15
16
|
# File 'lib/chatty_error.rb', line 14
def options
@options
end
|
#options=(options) ⇒ Object
18
19
20
|
# File 'lib/chatty_error.rb', line 18
def options=(options)
@options = options
end
|