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

org.xson.web.XcoWebException Maven / Gradle / Ivy

Go to download

xco-web is an easy to use control layer framework, is part of the SOA system, using xml language to describe the controller.

The newest version!
package org.xson.web;

public class XcoWebException extends RuntimeException {
	
	private static final long	serialVersionUID	= -1L;

	public XcoWebException() {
		super();
	}

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

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

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy