BreakPointInterrupt.st
author Claus Gittinger <cg@exept.de>
Sat, 17 Nov 2001 11:02:15 +0100
changeset 6207 b53b64413b40
parent 6038 c365981fc61e
child 7588 1819a1c408f3
permissions -rw-r--r--
caetgory change and documentation added

"{ Package: 'stx:libbasic' }"

HaltInterrupt subclass:#BreakPointInterrupt
	instanceVariableNames:''
	classVariableNames:''
	poolDictionaries:''
	category:'Kernel-Exceptions-Control'
!

!BreakPointInterrupt class methodsFor:'documentation'!

documentation
"
    Raised by the breakpoint wrapper code.
    A debug-breakpoint (see browsers methodList-debug menu).
"
! !

!BreakPointInterrupt class methodsFor:'documentation'!

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