indexing
description: "[
Constants used for exception handling.
This class may be used as ancestor by classes needing its facilities.
]"
library: "Free implementation of ELKS library"
copyright: "Copyright (c) 1986-2004, Eiffel Software and others"
license: "Eiffel Forum License v2 (see forum.txt)"
date: "$Date: 2007-12-17 17:39:36 -0800 (Mon, 17 Dec 2007) $"
revision: "$Revision: 120 $"
class interface
EXCEP_CONST
create
default_create
ANY
feature
check_instruction: INTEGER_32 is 7
class_invariant: INTEGER_32 is 6
com_exception: INTEGER_32 is 28
create_on_deferred: INTEGER_32 is 17
developer_exception: INTEGER_32 is 24
dollar_applied_to_melted_feature: INTEGER_32 is 26
eiffel_runtime_fatal_error: INTEGER_32 is 25
eiffel_runtime_panic: INTEGER_32 is 13
exception_in_signal_handler: INTEGER_32 is 20
external_exception: INTEGER_32 is 18
`errno'
floating_point_exception: INTEGER_32 is 5
generating_type: STRING_8
ANY
ensure ANY
generating_type_not_void: Result /= Void
generating_type_not_empty: not Result.is_empty
generator: STRING_8
ANY
ensure ANY
generator_not_void: Result /= Void
generator_not_empty: not Result.is_empty
incorrect_inspect_value: INTEGER_32 is 9
io_exception: INTEGER_32 is 21
loop_invariant: INTEGER_32 is 11
loop_variant: INTEGER_32 is 10
no_more_memory: INTEGER_32 is 2
number_of_codes: INTEGER_32 is 31
old_exception: INTEGER_32 is 30
operating_system_exception: INTEGER_32 is 22
`errno'
out_of_memory: INTEGER_32 is 15
postcondition: INTEGER_32 is 4
precondition: INTEGER_32 is 3
rescue_exception: INTEGER_32 is 14
resumption_failed: INTEGER_32 is 16
retrieve_exception: INTEGER_32 is 23
`retrieved'`IO_MEDIUM'
routine_failure: INTEGER_32 is 8
runtime_check_exception: INTEGER_32 is 29
runtime_io_exception: INTEGER_32 is 27
serialization_exception: INTEGER_32 is 31
signal_exception: INTEGER_32 is 12
valid_code (c: INTEGER_32): BOOLEAN
`c'
void_assigned_to_expanded: INTEGER_32 is 19
void_call_target: INTEGER_32 is 1
feature
frozen deep_equal (some: ?ANY; other: like arg #1): BOOLEAN
`some'`other'
ANY
ensure ANY
shallow_implies_deep: standard_equal (some, other) implies Result
both_or_none_void: (some = Void) implies (Result = (other = Void))
same_type: (Result and (some /= Void)) implies (other /= Void and then some.same_type (other))
symmetric: Result implies deep_equal (other, some)
frozen equal (some: ?ANY; other: like arg #1): BOOLEAN
`some'`other'
ANY
ensure ANY
definition: Result = (some = Void and other = Void) or else ((some /= Void and other /= Void) and then some.is_equal (other))
frozen is_deep_equal (other: EXCEP_CONST): BOOLEAN
`Current'`other'
ANY
require ANY
other_not_void: other /= Void
ensure ANY
shallow_implies_deep: standard_is_equal (other) implies Result
same_type: Result implies same_type (other)
symmetric: Result implies other.is_deep_equal (Current)
is_equal (other: EXCEP_CONST): BOOLEAN
`other'
ANY
require ANY
other_not_void: other /= Void
ensure ANY
symmetric: Result implies other.is_equal (Current)
consistent: standard_is_equal (other) implies Result
frozen standard_equal (some: ?ANY; other: like arg #1): BOOLEAN
`some'`other'
ANY
ensure ANY
definition: Result = (some = Void and other = Void) or else ((some /= Void and other /= Void) and then some.standard_is_equal (other))
frozen standard_is_equal (other: EXCEP_CONST): BOOLEAN
`other'
ANY
require ANY
other_not_void: other /= Void
ensure ANY
same_type: Result implies same_type (other)
symmetric: Result implies other.standard_is_equal (Current)
feature
conforms_to (other: ANY): BOOLEAN
`other'
ANY
require ANY
other_not_void: other /= Void
same_type (other: ANY): BOOLEAN
`other'
ANY
require ANY
other_not_void: other /= Void
ensure ANY
definition: Result = (conforms_to (other) and other.conforms_to (Current))
feature
copy (other: EXCEP_CONST)
`other'
ANY
require ANY
other_not_void: other /= Void
type_identity: same_type (other)
ensure ANY
is_equal: is_equal (other)
frozen deep_copy (other: EXCEP_CONST)
copy`other'deep_twin
ANY
require ANY
other_not_void: other /= Void
ensure ANY
deep_equal: deep_equal (Current, other)
frozen deep_twin: EXCEP_CONST
ANY
ensure ANY
deep_twin_not_void: Result /= Void
deep_equal: deep_equal (Current, Result)
frozen standard_copy (other: EXCEP_CONST)
`other'
ANY
require ANY
other_not_void: other /= Void
type_identity: same_type (other)
ensure ANY
is_standard_equal: standard_is_equal (other)
frozen standard_twin: EXCEP_CONST
`other'
ANY
ensure ANY
standard_twin_not_void: Result /= Void
equal: standard_equal (Result, Current)
frozen twin: EXCEP_CONST
`Current'
twincopycopy
ANY
ensure ANY
twin_not_void: Result /= Void
is_equal: Result.is_equal (Current)
feature
frozen default: ?EXCEP_CONST
ANY
frozen default_pointer: POINTER
`POINTER'
`p'default
`p'`POINTER'
ANY
default_rescue
ANY
frozen do_nothing
ANY
feature
io: STD_FILES
ANY
ensure ANY
io_not_void: Result /= Void
out: STRING_8
ANY
ensure ANY
out_not_void: Result /= Void
print (some: ?ANY)
`some'
ANY
frozen tagged_out: STRING_8
ANY
ensure ANY
tagged_out_not_void: Result /= Void
feature
operating_environment: OPERATING_ENVIRONMENT
ANY
ensure ANY
operating_environment_not_void: Result /= Void
invariant
ANY
reflexive_equality: standard_is_equal (Current)
reflexive_conformance: conforms_to (Current)
end EXCEP_CONST