class Pod4::Pod4Error

Base error class for Swingshift

Also used for any configuration errors where ArgumentError is not appropriate.

Public Class Methods

new(msg=nil) click to toggle source
Calls superclass method
# File lib/pod4/errors.rb, line 23
def initialize(msg=nil)
  super(msg || $! && $!.message)
  @cos = $!
end