Automatic generation produced by ISE Eiffel

Classes Clusters Cluster hierarchy Chart Relations Text Flat Contracts Flat contracts Go to:
indexing description: "[ Facilities for adapting the exception handling mechanism. This class may be used as ancestor by classes needing its facilities. ]" status: "See notice at end of class" date: "$Date: 2001-11-16 20:32:23 +0000 (Fri, 16 Nov 2001) $" revision: "$Revision: 51435 $" class interface EXCEPTIONS feature -- Status report meaning (except: INTEGER): STRING -- A message in English describing what except is assertion_violation: BOOLEAN -- Is last exception originally due to a violated -- assertion or non-decreasing variant? is_developer_exception: BOOLEAN -- Is the last exception originally due to -- a developer exception? is_developer_exception_of_name (name: STRING): BOOLEAN -- Is the last exception originally due to a developer -- exception of name name? developer_exception_name: STRING -- Name of last developer-raised exception require applicable: is_developer_exception is_signal: BOOLEAN -- Is last exception originally due to an external -- event (operating system signal)? is_system_exception: BOOLEAN -- Is last exception originally due to an -- external event (operating system error)? tag_name: STRING -- Tag of last violated assertion clause recipient_name: STRING -- Name of the routine whose execution was -- interrupted by last exception class_name: STRING -- Name of the class that includes the recipient -- of original form of last exception exception: INTEGER -- Code of last exception that occurred exception_trace: STRING -- String representation of the exception trace original_tag_name: STRING -- Assertion tag for original form of last -- assertion violation. original_exception: INTEGER -- Original code of last exception that triggered -- current exception original_recipient_name: STRING -- Name of the routine whose execution was -- interrupted by original form of last exception original_class_name: STRING -- Name of the class that includes the recipient -- of original form of last exception feature -- Status setting catch (code: INTEGER) -- Make sure that any exception of code code will be -- caught. This is the default. ignore (code: INTEGER) -- Make sure that any exception of code code will be -- ignored. This is not the default. raise (name: STRING) -- Raise a developer exception of name name. die (code: INTEGER) -- Terminate execution with exit status code, -- without triggering an exception. message_on_failure -- Print an exception history table -- in case of failure. -- This is the default. no_message_on_failure -- Do not print an exception history table -- in case of failure. indexing library: "[ EiffelBase: Library of reusable components for Eiffel. ]" status: "[ Copyright 1986-2001 Interactive Software Engineering (ISE). For ISE customers the original versions are an ISE product covered by the ISE Eiffel license and support agreements. ]" license: "[ EiffelBase may now be used by anyone as FREE SOFTWARE to develop any product, public-domain or commercial, without payment to ISE, under the terms of the ISE Free Eiffel Library License (IFELL) at http://eiffel.com/products/base/license.html. ]" source: "[ Interactive Software Engineering Inc. ISE Building 360 Storke Road, Goleta, CA 93117 USA Telephone 805-685-1006, Fax 805-685-6869 Electronic mail <info@eiffel.com> Customer support http://support.eiffel.com ]" info: "[ For latest info see award-winning pages: http://eiffel.com ]" end -- class EXCEPTIONS
Classes Clusters Cluster hierarchy Chart Relations Text Flat Contracts Flat contracts Go to:

-- Generated by ISE Eiffel --
For more details: www.eiffel.com