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

com.scloudic.rabbitframework.web.exceptions.WebException Maven / Gradle / Ivy

There is a newer version: 4.0.7
Show newest version
package com.scloudic.rabbitframework.web.exceptions;

public class WebException extends RuntimeException {
	private static final long serialVersionUID = 1L;
	public WebException() {
		super();
	}

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

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

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy