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

org.webswing.toolkit.api.WebswingApiException Maven / Gradle / Ivy

There is a newer version: 20.2.4
Show newest version
package org.webswing.toolkit.api;

import java.io.Serializable;

/**
 * Exception in API call processing
 */
public class WebswingApiException extends Exception implements Serializable {

	private static final long serialVersionUID = 4690618533706576723L;

	public WebswingApiException() {
		super();
	}

	public WebswingApiException(String msg) {
		super(msg);
	}

	public WebswingApiException(String msg, Throwable cause) {
		super(msg, cause);
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy