SignalError.st
author Claus Gittinger <cg@exept.de>
Mon, 19 May 2003 10:24:25 +0200
changeset 7294 c4e6d095a150
parent 6206 59d1ec1e1ed5
child 8325 ad394527946b
permissions -rw-r--r--
category changes

"
 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' }"

ProceedableError subclass:#SignalError
	instanceVariableNames:''
	classVariableNames:''
	poolDictionaries:''
	category:'Kernel-Exceptions'
!

!SignalError 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
"
    Parent of all exception signaling errors like WrongProceedabilityError
    and ProceedError
"
! !

!SignalError class methodsFor:'documentation'!

version
    ^ '$Header: /cvs/stx/stx/libbasic/SignalError.st,v 1.4 2001-11-17 10:01:25 cg Exp $'
! !