The default exception class for exceptions raised by Sequel. All exception classes defined by Sequel are descendants of this class.
If this exception wraps an underlying exception, the underlying exception is held here.
Returned the wrapped exception if one exists, otherwise use ruby's default behavior.
# File lib/sequel/exceptions.rb, line 14 def cause wrapped_exception || super end