class SP::Duh::Exceptions::GenericDetailedError

Public Class Methods

new(details = {}) click to toggle source
Calls superclass method SP::Duh::Exceptions::GenericError::new
# File lib/sp/duh/exceptions.rb, line 62
def initialize(details = {})
  message = I18n.t("sp-duh.exceptions.#{type.underscore.gsub('/','.')}", details)
  super(message)
end