/* * ChainedException.java * * Created on 2 de Dezembro de 2006, 06:17 * * To change this template, choose Tools | Template Manager * and open the template in the editor. */ package com.tecgraf.dao; /** * * @author ismael */ public class ChainedException extends Exception { private Throwable cause = null; public ChainedException() { super(); } public ChainedException(String message) { super(message); } public ChainedException(String message, Throwable cause) { super(message); this.cause = cause; } public Throwable getCause() { return cause; } public void printStackTrace() { super.printStackTrace(); if (cause != null) { System.err.println("Caused by:"); cause.printStackTrace(); } } public void printStackTrace(java.io.PrintStream ps) { super.printStackTrace(ps); if (cause != null) { ps.println("Caused by:"); cause.printStackTrace(ps); } } public void printStackTrace(java.io.PrintWriter pw) { super.printStackTrace(pw); if (cause != null) { pw.println("Caused by:"); cause.printStackTrace(pw); } } }