Sha256: e5642e4cfb9ea3900e3644f9c8f8bb06b7b8f0c51f7d1ecf0ea81da0bdaf44c0
Contents?: true
Size: 212 Bytes
Versions: 3
Compression:
Stored size: 212 Bytes
Contents
module BibCard class EntityNotFoundException < RuntimeError MESSAGE = 'Entity not found.' def initialize(custom_msg = nil) custom_msg.nil? ? super(MESSAGE) : super(custom_msg) end end end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
bib_card-0.6.2 | lib/bib_card/entity_not_found_exception.rb |
bib_card-0.6.1 | lib/bib_card/entity_not_found_exception.rb |
bib_card-0.5.0 | lib/bib_card/entity_not_found_exception.rb |