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

"
 COPYRIGHT (c) 1993 by Claus Gittinger
	      All Rights Reserved

 This software is furnished under a license and may be used
 only in accordance with the terms of that license and with the
 inclusion of the above copyright notice.   This software may not
 be provided or otherwise made available to, or used by, any
 other person.  No title to or ownership of the software is
 hereby transferred.
"

"{ Package: 'stx:libbasic' }"

GenericException subclass:#Exception
	instanceVariableNames:''
	classVariableNames:''
	poolDictionaries:''
	category:'Kernel-Exceptions'
!

!Exception class methodsFor:'documentation'!

copyright
"
 COPYRIGHT (c) 1993 by Claus Gittinger
	      All Rights Reserved

 This software is furnished under a license and may be used
 only in accordance with the terms of that license and with the
 inclusion of the above copyright notice.   This software may not
 be provided or otherwise made available to, or used by, any
 other person.  No title to or ownership of the software is
 hereby transferred.
"
!

documentation
"
    all logic moved to GenericException,
    to allow for some exceptions (UnhandledExceptionException and
    Interrupts) not to be a child of Exception.

    Exception is an abstract superclass of all exceptions in the system,
    which are not generated by user actions (i.e. Interrupts).

    [see also:]
        Signal
"
! !

!Exception class methodsFor:'documentation'!

version
    ^ '$Header: /cvs/stx/stx/libbasic/Exception.st,v 1.80 2001-11-17 10:01:02 cg Exp $'

! !