com.ibm.wsspi.zos.connect

Class DataXformException

  • java.lang.Object
    • java.lang.Throwable
      • java.lang.Exception
        • com.ibm.wsspi.zos.connect.DataXformException
  • All Implemented Interfaces:
    java.io.Serializable


    public class DataXformException
    extends java.lang.Exception
    A DataXformException is thrown to indicate that the OSGI service implementing the DataXform SPI encountered an error.
    See Also:
    Serialized Form
    • Constructor Summary

      Constructors 
      Constructor and Description
      DataXformException()
      Constructs a new instance with null as its detail message and cause.
      DataXformException(java.lang.String message)
      Constructs a new instance with the specified detail message.
      DataXformException(java.lang.String message, java.lang.Throwable cause)
      Constructs a new instance with the specified detail message and cause.
      DataXformException(java.lang.Throwable cause)
      Constructs a new instance with the specified cause.
    • Method Summary

      • Methods inherited from class java.lang.Throwable

        addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
      • Methods inherited from class java.lang.Object

        equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
    • Constructor Detail

      • DataXformException

        public DataXformException()
        Constructs a new instance with null as its detail message and cause.
      • DataXformException

        public DataXformException(java.lang.String message)
        Constructs a new instance with the specified detail message.
        Parameters:
        message - The detail message.
      • DataXformException

        public DataXformException(java.lang.Throwable cause)
        Constructs a new instance with the specified cause.
        Parameters:
        cause - The cause of type Throwable.
      • DataXformException

        public DataXformException(java.lang.String message,
                          java.lang.Throwable cause)
        Constructs a new instance with the specified detail message and cause.
        Parameters:
        message - The detail message.
        cause - The cause of type Throwable.