BreakPointInterrupt.st
author Claus Gittinger <cg@exept.de>
Mon, 19 May 2003 10:24:25 +0200
changeset 7294 c4e6d095a150
parent 6207 b53b64413b40
child 7588 1819a1c408f3
permissions -rw-r--r--
category changes

"{ 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 $'
! !