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