com.cmpware.cmp
Class BreakpointException

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Exception
          extended by com.cmpware.cmp.BreakpointException
All Implemented Interfaces:
java.io.Serializable

public class BreakpointException
extends java.lang.Exception

This class implements the Breakpoint Exception. This is thrown whenever a breakpoint is encountered.

Copyright (c) 2004 Cmpware, Inc. All Rights Reserved.

Author:
SAG
See Also:
Serialized Form

Field Summary
static java.lang.String copyright
          Copyright string
(package private) static long serialVersionUID
           
 
Constructor Summary
BreakpointException()
          The constructor
BreakpointException(int addr)
          A constructor.
BreakpointException(java.lang.String msg)
          A constructor
BreakpointException(java.lang.String msg, int addr)
          A constructor.
 
Method Summary
 int getAddress()
          This method returns the memory address that caused the exception.
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Field Detail

copyright

public static final java.lang.String copyright
Copyright string

See Also:
Constant Field Values

serialVersionUID

static final long serialVersionUID
See Also:
Constant Field Values
Constructor Detail

BreakpointException

public BreakpointException()
The constructor


BreakpointException

public BreakpointException(java.lang.String msg)
A constructor

Parameters:
msg - The exception message string.

BreakpointException

public BreakpointException(java.lang.String msg,
                           int addr)
A constructor.

Parameters:
msg - The exception message string.
addr - The address of the exception.

BreakpointException

public BreakpointException(int addr)
A constructor.

Parameters:
addr - The address of the exception.
Method Detail

getAddress

public int getAddress()
This method returns the memory address that caused the exception.

Returns:
This method returns the memory address that caused the exception.