class PayU::PayuError

Public Class Methods

new(msg="PayuError", exception_type="Standard") click to toggle source
Calls superclass method
# File lib/payu/payu_error.rb, line 3
def initialize(msg="PayuError", exception_type="Standard")
  @exception_type = exception_type
  super(msg)
end