class Pod4::DatabaseError

Raised if something goes wrong on the database

Public Class Methods

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