src.com.ibm.as400.data.PcmlException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jt400-jdk8 Show documentation
Show all versions of jt400-jdk8 Show documentation
The Open Source version of the IBM Toolbox for Java
The newest version!
///////////////////////////////////////////////////////////////////////////////
//
// JTOpen (IBM Toolbox for Java - OSS version)
//
// Filename: PcmlException.java
//
// The source code contained herein is licensed under the IBM Public License
// Version 1.0, which has been approved by the Open Source Initiative.
// Copyright (C) 1997-2000 International Business Machines Corporation and
// others. All rights reserved.
//
///////////////////////////////////////////////////////////////////////////////
package com.ibm.as400.data;
/**
* Thrown when an error is encountered using a ProgramCallDocument.
*
* @see ProgramCallDocument
* @see PcmlSpecificationException
*/
public class PcmlException extends XmlException // @C3C
{
/**
* Constructs a PcmlException
without a
* user message.
*
*/
PcmlException()
{
super();
}
/**
* Constructs a PcmlException
with a user message.
*
* @param key the resource key for the message string
*/
PcmlException(String key)
{
super(key); // @C3C
}
/**
* Constructs a PcmlException
with a user message and substitution values.
*
* @param key The resource key for the message string
* @param args Array of substitution values
*/
PcmlException(String key, Object[] args)
{
super(key, args); // @C3C
}
/**
* Constructs a PcmlException
with another exception.
*
* @param e the exception wrapped by the PcmlException
*/
PcmlException(Exception e)
{
super(e); // @C3C
}
// @C3D - Moved to XmlException: getLocalizedMessage(), getException().
}