Subversion Repositories bacoAlunos

Rev

Blame | Compare with Previous | Last modification | View Log | RSS feed

package pt.estgp.estgweb.services.expceptions;

public class ServiceException extends 1.5.0/docs/api/java/lang/Exception.html">Exception
{
        public ServiceException()
        {
                super();
        }

        public ServiceException(1.5.0/docs/api/java/lang/String.html">String msg)
        {
                super(msg);
        }

        public ServiceException(1.5.0/docs/api/java/lang/String.html">String msg,1.5.0/docs/api/java/lang/Throwable.html">Throwable cause)
        {
                super(msg,cause);
        }
        /**
         * Gets the original exception thrown by the executed service. The same as <code>getCause<code>.
         * @return the exception service has thrown
         */

        public 1.5.0/docs/api/java/lang/Throwable.html">Throwable getServiceThrownException()
        {
                return super.getCause();
        }
}