Exception.st
author Stefan Vogel <sv@exept.de>
Fri, 18 May 2001 00:28:30 +0200
changeset 5871 cf03b06e442e
parent 4501 1f22f4eb2028
child 6206 59d1ec1e1ed5
permissions -rw-r--r--
Use <resource:#obsolete>

"
 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.
"

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.79 1999-08-03 07:34:34 stefan Exp $'

! !