ControlInterrupt.st
author penk
Mon, 10 Feb 2003 17:39:23 +0100
changeset 7019 6591ea303fbd
parent 6207 b53b64413b40
child 7232 1d05a293b8b0
permissions -rw-r--r--
*** empty log message ***

"{ Package: 'stx:libbasic' }"

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

!ControlInterrupt class methodsFor:'documentation'!

documentation
"
    parent of all control-related interrupts (halt, breakpoint etc.)
"
! !

!ControlInterrupt class methodsFor:'testing'!

isControlInterrupt
    ^ true

    "Created: / 16.11.2001 / 16:11:11 / cg"
! !

!ControlInterrupt class methodsFor:'documentation'!

version
    ^ '$Header: /cvs/stx/stx/libbasic/ControlInterrupt.st,v 1.3 2001-11-17 10:02:02 cg Exp $'
! !