![JAR search and dependency download from the Maven repository](/logo.png)
com.ibm.ims.connect.ImsOtmaExecutionException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of IMSConnectAPI Show documentation
Show all versions of IMSConnectAPI Show documentation
API that allows Java applications to interface with IMS Connect
The newest version!
/*
* File: ImsOtmaExecutionException.java
* ==========================================================================
* Licensed Material - Property of IBM
*
* IBM Confidential
*
* OCO Source Materials
*
* 5655-TDA
*
* (C) Copyright IBM Corp. 2009, 2013 All Rights Reserved.
*
* The source code for this program is not published or
* otherwise divested of its trade secrets, irrespective
* of what has been deposited with the U.S. Copyright
* Office.
*
* US Government Users Restricted Rights - Use, duplication or
* disclosure restricted by GSA ADP Schedule Contract with
* IBM Corp.
* ===========================================================================
*/
package com.ibm.ims.connect;
/**
* This class reports an error condition in executing an interaction with IMS
* Connect.
*/
public class ImsOtmaExecutionException extends ImsConnectApiException
{
/**
*
*/
private static final long serialVersionUID = -1924299818940922398L;
public static final String copyright =
"Licensed Material - Property of IBM "
+ "5655-TDA"
+ "(C) Copyright IBM Corp. 2009 All Rights Reserved. "
+ "US Government Users Restricted Rights - Use, duplication or "
+ "disclosure restricted by GSA ADP Schedule Contract with IBM Corp. ";
private String errorNumber = "HWS0000E";
/**
* @param errNo
* @param errMsg
*/
public ImsOtmaExecutionException(String errNo, String errMsg)
{
super(errNo, errMsg);
this.errorNumber = errNo;
}
/**
* @return
*/
public String getErrorNumber()
{
return this.errorNumber;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy