Exception.st
author Claus Gittinger <cg@exept.de>
Sat, 31 Jul 1999 18:26:55 +0200
changeset 4482 076e242d8fdd
parent 4481 f3f7e1af7489
child 4501 1f22f4eb2028
permissions -rw-r--r--
*** empty log message ***

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

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

    [see also:]
        Signal
"
! !

!Exception class methodsFor:'documentation'!

version
    ^ '$Header: /cvs/stx/stx/libbasic/Exception.st,v 1.78 1999-07-31 16:26:55 cg Exp $'

! !