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

org.jboss.util.NestedSQLException Maven / Gradle / Ivy

There is a newer version: 2.5.0.Final
Show newest version
/*
  * JBoss, Home of Professional Open Source
  * Copyright 2005, JBoss Inc., and individual contributors as indicated
  * by the @authors tag. See the copyright.txt in the distribution for a
  * full listing of individual contributors.
  *
  * This is free software; you can redistribute it and/or modify it
  * under the terms of the GNU Lesser General Public License as
  * published by the Free Software Foundation; either version 2.1 of
  * the License, or (at your option) any later version.
  *
  * 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; if not, write to the Free
  * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
  * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
  */
package org.jboss.util;

import java.io.PrintWriter;
import java.io.PrintStream;

import java.sql.SQLException;

/**
 * A common superclass for SQLException classes that can contain
 * a nested Throwable detail object.
 *
 * @version $Revision: 2800 $
 * @author  Jason Dillon
 */
public class NestedSQLException
   extends SQLException
   implements NestedThrowable
{
   /** The serialVersionUID */
   private static final long serialVersionUID = -8348882503434035185L;
   /** The nested throwable */
   protected final Throwable nested;

   /**
    * Construct a NestedSQLException with the specified detail 
    * message.
    *
    * @param msg  Detail message.
    */
   public NestedSQLException(final String msg) {
      super(msg);
      this.nested = null;
   }

   /**
    * Construct a NestedSQLException with the specified detail 
    * message and nested Throwable.
    *
    * @param msg     Detail message.
    * @param nested  Nested Throwable.
    */
   public NestedSQLException(final String msg, final Throwable nested) {
      super(msg);
      this.nested = nested;
      NestedThrowable.Util.checkNested(this, nested);
   }

   /**
    * Construct a NestedSQLException with the specified
    * nested Throwable.
    *
    * @param nested  Nested Throwable.
    */
   public NestedSQLException(final Throwable nested) {
      this(nested.getMessage(), nested);
   }

   /**
    * Construct a NestedSQLException.
    *
    * @param msg     Detail message.
    * @param state   SQL state message.
    */
   public NestedSQLException(final String msg, final String state) {
      super(msg, state);
      this.nested = null;
   }

   /**
    * Construct a NestedSQLException.
    *
    * @param msg     Detail message.
    * @param state   SQL state message.
    * @param code    SQL vendor code.
    */
   public NestedSQLException(final String msg, final String state, final int code) {
      super(msg, state, code);
      this.nested = null;
   }
   
   /**
    * Return the nested Throwable.
    *
    * @return  Nested Throwable.
    */
   public Throwable getNested() {
      return nested;
   }

   /**
    * Return the nested Throwable.
    *
    * 

For JDK 1.4 compatibility. * * @return Nested Throwable. */ public Throwable getCause() { return nested; } /** * Returns the composite throwable message. * * @return The composite throwable message. */ public String getMessage() { return NestedThrowable.Util.getMessage(super.getMessage(), nested); } /** * Prints the composite message and the embedded stack trace to the * specified print stream. * * @param stream Stream to print to. */ public void printStackTrace(final PrintStream stream) { if (nested == null || NestedThrowable.PARENT_TRACE_ENABLED) { super.printStackTrace(stream); } NestedThrowable.Util.print(nested, stream); } /** * Prints the composite message and the embedded stack trace to the * specified print writer. * * @param writer Writer to print to. */ public void printStackTrace(final PrintWriter writer) { if (nested == null || NestedThrowable.PARENT_TRACE_ENABLED) { super.printStackTrace(writer); } NestedThrowable.Util.print(nested, writer); } /** * Prints the composite message and the embedded stack trace to * System.err. */ public void printStackTrace() { printStackTrace(System.err); } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy