class FatalError

An exception thrown to indicate an unrecoverable error has been encountered. The process should be terminated and the exception's message should be displayed to the user.

An exception thrown to indicate an unrecoverable error has been encountered. The process should be terminated and the exception's message should be displayed to the user.

Public Class Methods

new(message, cause = nil) click to toggle source

((|message|)) The message that should be displayed to the user. ((|cause|)) The exception that caused the fatal error.

Calls superclass method
# File lib/ec2/amitools/exception.rb, line 21
def initialize(message, cause = nil)
  super(message)
  @cause = cause
end