package edu.asu.spring.quadriga.exceptions; /** * * @author satyaswaroop boddu * */ public class QuadrigaException extends Exception { /** * */ private static final long serialVersionUID = 9119125724547341370L; public QuadrigaException() { super(); // TODO Auto-generated constructor stub } public QuadrigaException(String message, Throwable cause) { super(message, cause); // TODO Auto-generated constructor stub } public QuadrigaException(String message) { super(message); // TODO Auto-generated constructor stub } public QuadrigaException(Throwable cause) { super(cause); // TODO Auto-generated constructor stub } }