Class ReplyValueException

java.lang.Object
  |
  +--java.lang.Throwable
        |
        +--ReplyValueException

public class ReplyValueException
extends java.lang.Throwable

This class provides an exception if an error occurs during a read from the reply buffer. CVM - Model

Version:
1.00
Author:
Scott Streit
See Also:
Throwable, Serialized Form

Field Summary
private  int offending_value
           
 
Fields inherited from class java.lang.Throwable
backtrace, detailMessage, serialVersionUID
 
Constructor Summary
ReplyValueException(int offending_value)
          Class constructor.
ReplyValueException(java.lang.String message)
          Class constructor.
 
Method Summary
 int get_value()
          This method returns the reply value that caused an error.
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getLocalizedMessage, getMessage, printStackTrace, printStackTrace, printStackTrace, printStackTrace0, toString
 
Methods inherited from class java.lang.Object
, clone, equals, finalize, getClass, hashCode, notify, notifyAll, registerNatives, wait, wait, wait
 

Field Detail

offending_value

private int offending_value
Constructor Detail

ReplyValueException

public ReplyValueException(int offending_value)
Class constructor.
Parameters:
offending_value - The reply value that caused an error.

ReplyValueException

public ReplyValueException(java.lang.String message)
Class constructor.
Parameters:
message - The message that the exception should display.
Method Detail

get_value

public int get_value()
This method returns the reply value that caused an error.