All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.arjuna.mw.wscf.model.sagas.exceptions.CancelFailedException Maven / Gradle / Ivy

The newest version!
/*
   Copyright The Narayana Authors
   SPDX-License-Identifier: Apache-2.0
 */

package com.arjuna.mw.wscf.model.sagas.exceptions;

import com.arjuna.mw.wsas.exceptions.SystemException;


/**
 * A fail occurred during a Business Agreement cancel operation -- only applies in WSBA 1.1.
 *
 * @author Andrew Dinn([email protected])
 * @version $Id:$
 */

public class CancelFailedException extends SystemException
{

    public CancelFailedException()
    {
	super();
    }

    public CancelFailedException(String s)
    {
	super(s);
    }

    public CancelFailedException(String s, int errorcode)
    {
	super(s, errorcode);
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy