Sha256: 79f3507cb6d881569b3d5eb36f587a1d6100babfd9156525f6e846afae8aef7c
Contents?: true
Size: 519 Bytes
Versions: 2
Compression:
Stored size: 519 Bytes
Contents
# frozen_string_literal: true module LoggableActivity # Error class for loggable activity. class Error < StandardError def initialize(msg = '') super(msg) end end # Error class for encryption. class EncryptionError < StandardError def initialize(msg = '') super(msg) end end # This class is used to load the configuration file located at config/loggable_activity.yml class ConfigurationError < StandardError def initialize(msg = '') super(msg) end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
loggable_activity-0.5.4 | lib/loggable_activity/error.rb |
loggable_activity-0.5.0 | lib/loggable_activity/error.rb |