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

com.arjuna.mw.wsas.exceptions.SystemCommunicationException Maven / Gradle / Ivy

There is a newer version: 7.1.0.Final
Show newest version
/*
   Copyright The Narayana Authors
   SPDX-License-Identifier: Apache-2.0
 */

package com.arjuna.mw.wsas.exceptions;

/**
 * Marker interface for exceptions e.g. timeouts, in the client/server communication.
 */
public class SystemCommunicationException extends SystemException {

	public SystemCommunicationException ()
	{
		super();
	}

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

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

	public SystemCommunicationException (String reason, Object obj)
	{
		super(reason, obj);
	}

	public SystemCommunicationException (Object ex)
	{
		super(ex);
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy