class BibCard::EntityNotFoundException
Constants
- MESSAGE
Public Class Methods
new(custom_msg = nil)
click to toggle source
Calls superclass method
# File lib/bib_card/entity_not_found_exception.rb, line 6 def initialize(custom_msg = nil) custom_msg.nil? ? super(MESSAGE) : super(custom_msg) end