Exception.st
author Claus Gittinger <cg@exept.de>
Tue, 01 Feb 2000 22:52:44 +0100
changeset 5225 d74b4c895376
parent 4501 1f22f4eb2028
child 6206 59d1ec1e1ed5
permissions -rw-r--r--
comments; handle class-instvar and comment changes
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
     1
"
a27a279701f8 Initial revision
claus
parents:
diff changeset
     2
 COPYRIGHT (c) 1993 by Claus Gittinger
171
129f0e2e23df handling now in Exception
claus
parents: 142
diff changeset
     3
	      All Rights Reserved
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
     4
a27a279701f8 Initial revision
claus
parents:
diff changeset
     5
 This software is furnished under a license and may be used
a27a279701f8 Initial revision
claus
parents:
diff changeset
     6
 only in accordance with the terms of that license and with the
a27a279701f8 Initial revision
claus
parents:
diff changeset
     7
 inclusion of the above copyright notice.   This software may not
a27a279701f8 Initial revision
claus
parents:
diff changeset
     8
 be provided or otherwise made available to, or used by, any
a27a279701f8 Initial revision
claus
parents:
diff changeset
     9
 other person.  No title to or ownership of the software is
a27a279701f8 Initial revision
claus
parents:
diff changeset
    10
 hereby transferred.
a27a279701f8 Initial revision
claus
parents:
diff changeset
    11
"
a27a279701f8 Initial revision
claus
parents:
diff changeset
    12
4481
f3f7e1af7489 added GenericException in-between, to allow for some exceptions
Claus Gittinger <cg@exept.de>
parents: 4480
diff changeset
    13
GenericException subclass:#Exception
f3f7e1af7489 added GenericException in-between, to allow for some exceptions
Claus Gittinger <cg@exept.de>
parents: 4480
diff changeset
    14
	instanceVariableNames:''
f3f7e1af7489 added GenericException in-between, to allow for some exceptions
Claus Gittinger <cg@exept.de>
parents: 4480
diff changeset
    15
	classVariableNames:''
1118
1037616d9add ignore unhandled querySignals
Claus Gittinger <cg@exept.de>
parents: 1038
diff changeset
    16
	poolDictionaries:''
1037616d9add ignore unhandled querySignals
Claus Gittinger <cg@exept.de>
parents: 1038
diff changeset
    17
	category:'Kernel-Exceptions'
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
    18
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
    19
1953
c8a3af54acb3 unhandled querySignals should return nil
Claus Gittinger <cg@exept.de>
parents: 1710
diff changeset
    20
!Exception class methodsFor:'documentation'!
12
8e03bd717355 *** empty log message ***
claus
parents: 3
diff changeset
    21
88
81dacba7a63a *** empty log message ***
claus
parents: 77
diff changeset
    22
copyright
81dacba7a63a *** empty log message ***
claus
parents: 77
diff changeset
    23
"
81dacba7a63a *** empty log message ***
claus
parents: 77
diff changeset
    24
 COPYRIGHT (c) 1993 by Claus Gittinger
171
129f0e2e23df handling now in Exception
claus
parents: 142
diff changeset
    25
	      All Rights Reserved
88
81dacba7a63a *** empty log message ***
claus
parents: 77
diff changeset
    26
81dacba7a63a *** empty log message ***
claus
parents: 77
diff changeset
    27
 This software is furnished under a license and may be used
81dacba7a63a *** empty log message ***
claus
parents: 77
diff changeset
    28
 only in accordance with the terms of that license and with the
81dacba7a63a *** empty log message ***
claus
parents: 77
diff changeset
    29
 inclusion of the above copyright notice.   This software may not
81dacba7a63a *** empty log message ***
claus
parents: 77
diff changeset
    30
 be provided or otherwise made available to, or used by, any
81dacba7a63a *** empty log message ***
claus
parents: 77
diff changeset
    31
 other person.  No title to or ownership of the software is
81dacba7a63a *** empty log message ***
claus
parents: 77
diff changeset
    32
 hereby transferred.
81dacba7a63a *** empty log message ***
claus
parents: 77
diff changeset
    33
"
81dacba7a63a *** empty log message ***
claus
parents: 77
diff changeset
    34
!
81dacba7a63a *** empty log message ***
claus
parents: 77
diff changeset
    35
12
8e03bd717355 *** empty log message ***
claus
parents: 3
diff changeset
    36
documentation
8e03bd717355 *** empty log message ***
claus
parents: 3
diff changeset
    37
"
4481
f3f7e1af7489 added GenericException in-between, to allow for some exceptions
Claus Gittinger <cg@exept.de>
parents: 4480
diff changeset
    38
    all logic moved to GenericException,
f3f7e1af7489 added GenericException in-between, to allow for some exceptions
Claus Gittinger <cg@exept.de>
parents: 4480
diff changeset
    39
    to allow for some exceptions (UnhandledExceptionException and
4501
1f22f4eb2028 Fix typo
Stefan Vogel <sv@exept.de>
parents: 4482
diff changeset
    40
    Interrupts) not to be a child of Exception.
4482
076e242d8fdd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4481
diff changeset
    41
076e242d8fdd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4481
diff changeset
    42
    Exception is an abstract superclass of all exceptions in the system,
4501
1f22f4eb2028 Fix typo
Stefan Vogel <sv@exept.de>
parents: 4482
diff changeset
    43
    which are not generated by user actions (i.e. Interrupts).
4482
076e242d8fdd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4481
diff changeset
    44
076e242d8fdd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4481
diff changeset
    45
    [see also:]
076e242d8fdd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4481
diff changeset
    46
        Signal
2174
3c6300f27f74 example section;
Claus Gittinger <cg@exept.de>
parents: 2081
diff changeset
    47
"
12
8e03bd717355 *** empty log message ***
claus
parents: 3
diff changeset
    48
! !
4482
076e242d8fdd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4481
diff changeset
    49
076e242d8fdd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4481
diff changeset
    50
!Exception class methodsFor:'documentation'!
076e242d8fdd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4481
diff changeset
    51
076e242d8fdd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4481
diff changeset
    52
version
4501
1f22f4eb2028 Fix typo
Stefan Vogel <sv@exept.de>
parents: 4482
diff changeset
    53
    ^ '$Header: /cvs/stx/stx/libbasic/Exception.st,v 1.79 1999-08-03 07:34:34 stefan Exp $'
4482
076e242d8fdd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4481
diff changeset
    54
076e242d8fdd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4481
diff changeset
    55
! !