class ProxyTester::Exceptions::MyStandardError

Attributes

cause[R]

Public Class Methods

new(msg, cause = $!) click to toggle source
Calls superclass method
# File lib/proxy_tester/exceptions.rb, line 10
def initialize(msg, cause = $!)
  super(msg)
  @cause = cause;
end