Exception.st
author Claus Gittinger <cg@exept.de>
Sat, 31 Jul 1999 18:22:47 +0200
changeset 4481 f3f7e1af7489
parent 4480 9b7616845592
child 4482 076e242d8fdd
permissions -rw-r--r--
added GenericException in-between, to allow for some exceptions to be cousins of Exception (UnhandledException and Interrupts)

"
 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) to be not a parent of Exception.
"
! !