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

org.onetwo.common.exception.WebException Maven / Gradle / Ivy

There is a newer version: 5.2.7
Show newest version
package org.onetwo.common.exception;

@Deprecated
public class WebException extends ServiceException{
	
	/**
	 * 
	 */
	private static final long serialVersionUID = 7280411050853219784L;

	public WebException() {
		super();
	}


	public WebException(String msg, String code) {
		super(msg, code);
	}


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


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


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


	public WebException(Throwable cause, String code) {
		super(cause, code);
	}


	public WebException(Throwable cause) {
		super(cause);
	}
	

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy