com.arjuna.mw.wscf.exceptions.InvalidParticipantException Maven / Gradle / Ivy
The newest version!
/*
Copyright The Narayana Authors
SPDX-License-Identifier: Apache-2.0
*/
package com.arjuna.mw.wscf.exceptions;
import com.arjuna.mw.wsas.exceptions.WSASException;
/**
* The specified participant is invalid in the context used.
*
* @author Mark Little ([email protected])
* @version $Id: InvalidParticipantException.java,v 1.1 2002/12/19 10:44:02 nmcl Exp $
* @since 1.0.
*/
public class InvalidParticipantException extends WSASException
{
public InvalidParticipantException ()
{
super();
}
public InvalidParticipantException (String s)
{
super(s);
}
public InvalidParticipantException (String s, int errorcode)
{
super(s, errorcode);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy