class Pod4::CantContinue

Raised if a Pod4 method runs into problems

Note, invalid parameters get a Ruby ArgumentError. This is for, eg, an interface finding that the ID it was given to read does not exist.

Public Class Methods

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