com.filenet.rm.bds.exception

Class Diagnostic

  1. java.lang.Object
  2. extended bycom.filenet.rm.bds.exception.Diagnostic

  1. public class Diagnostic
  2. extends java.lang.Object
This class represents the Diagnostic portion of the transport error/exception reporting mechanism. It is contained within the ErrorFrame class.

Constructor Summary

Constructor and Description
Diagnostic(java.lang.String diagnosticType,java.lang.String diagnosticValue)
Constructor.

Method Summary

Modifier and Type Method and Description
  1. java.lang.String
getDiagnosticType()
The underlying diagnostic type.
  1. java.lang.String
getDiagnosticValue()
The underlying diagnostic value.
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait

Constructor Detail

Diagnostic

  1. public Diagnostic(java.lang.String diagnosticType,
  2. java.lang.String diagnosticValue)
Constructor.
Parameters:
diagnosticType - the underlying diagnostic type. Can be empty or null.
diagnosticValue - the underlying diagnostic value. Can be empty or null.

Method Detail

getDiagnosticType

  1. public java.lang.String getDiagnosticType( )
The underlying diagnostic type.
Returns:
a String. Can be empty or null.

getDiagnosticValue

  1. public java.lang.String getDiagnosticValue( )
The underlying diagnostic value.
Returns:
a String. Can be empty or null.