io.logspace.agent.shaded.mchange.lang.PotentiallySecondaryException Maven / Gradle / Ivy
/*
* Distributed as part of c3p0 v.0.9.1.1
*
* Copyright (C) 2005 Machinery For Change, Inc.
*
* Author: Steve Waldman
*
* This library is free software; you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License version 2.1, as
* published by the Free Software Foundation.
*
* This software is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this software; see the file LICENSE. If not, write to the
* Free Software Foundation, Inc., 59 Temple Place, Suite 330,
* Boston, MA 02111-1307, USA.
*/
package io.logspace.agent.shaded.mchange.lang;
import java.io.*;
import io.logspace.agent.shaded.mchange.v2.lang.VersionUtils;
/**
* @deprecated jdk 1.4 mow includes this idea as part of the standard
* Throwable/Exception classes.
*/
public class PotentiallySecondaryException extends Exception implements PotentiallySecondary
{
final static String NESTED_MSG = ">>>>>>>>>> NESTED EXCEPTION >>>>>>>>";
Throwable nested;
public PotentiallySecondaryException(String msg, Throwable t)
{
super(msg);
this.nested = t;
}
public PotentiallySecondaryException(Throwable t)
{this("", t);}
public PotentiallySecondaryException(String msg)
{this(msg, null);}
public PotentiallySecondaryException()
{this("", null);}
public Throwable getNestedThrowable()
{return nested;}
private void setNested(Throwable t)
{
this.nested = t;
if ( VersionUtils.isAtLeastJavaVersion14() )
this.initCause( t );
}
public void printStackTrace(PrintWriter pw)
{
super.printStackTrace(pw);
if ( !VersionUtils.isAtLeastJavaVersion14() && nested != null)
{
pw.println(NESTED_MSG);
nested.printStackTrace(pw);
}
}
public void printStackTrace(PrintStream ps)
{
super.printStackTrace(ps);
if ( !VersionUtils.isAtLeastJavaVersion14() && nested != null)
{
ps.println("NESTED_MSG");
nested.printStackTrace(ps);
}
}
public void printStackTrace()
{
if ( VersionUtils.isAtLeastJavaVersion14() )
super.printStackTrace();
else
this.printStackTrace(System.err);
}
}