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

org.mycore.common.MCRCatchException Maven / Gradle / Ivy

There is a newer version: 2024.05
Show newest version
/*
 * This file is part of ***  M y C o R e  ***
 * See http://www.mycore.de/ for details.
 *
 * MyCoRe is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 *
 * MyCoRe 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 General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with MyCoRe.  If not, see .
 */

package org.mycore.common;

/**
 * Instances of this class represent a general exception thrown by any part of
 * the MyCoRe implementation classes.
 * 
 * Note that this class extends java.lang.Exception. Any call of
 * a method that throws subclass of this class must be catched and handled in
 * some way.
 * 
 * @author Thomas Scheffler (yagee)
 * @version $Revision$ $Date$
 * 
 * @see java.lang.Exception
 */
public class MCRCatchException extends Exception {
    private static final long serialVersionUID = -2244850451757768863L;

    /**
     * Creates a new MCRCatchException with an error message
     * 
     * @param message
     *            the error message for this exception
     */
    public MCRCatchException(String message) {
        super(message);
    }

    /**
     * Constructs a new exception with the specified detail message and cause.
     * 
     * Note that the detail message associated with cause is not automatically
     * incorporated in this exception's detail message.
     * 
     * @param message
     *            the detail message
     * @param cause the
     *            cause (A null value is permitted, and indicates that the cause
     *            is nonexistent or unknown.)
     * @see Exception#Exception(java.lang.String, java.lang.Throwable)
     */
    public MCRCatchException(String message, Throwable cause) {
        super(message, cause);
    }

    /**
     * Returns a String containing the invocation stack trace for this exception
     * 
     * @return a String containing the invocation stack trace for this exception
     * @see MCRException#getStackTraceAsString(Throwable)
     */
    public String getStackTraceAsString() {
        return MCRException.getStackTraceAsString(this);
    }

    /** Counter to prevent a recursion between getStackTrace() and toString() */
    private int toStringInvocationCounter = 0;

    /**
     * Returns a String representation of this exception and all its properties
     * 
     * @return a String representation of this exception and all its properties
     */
    @Override
    public synchronized String toString() {
        // Use counter to prevent a recursion between getStackTrace() and
        // toString()
        toStringInvocationCounter++;

        if (toStringInvocationCounter > 1) {
            return super.toString();
        }

        StringBuilder sb = new StringBuilder();

        sb.append("MyCoRe Exception: ").append(getClass().getName());
        sb.append("\n\n");
        sb.append("Message:\n");
        sb.append(getMessage()).append("\n\n");
        sb.append("Stack trace:\n");
        sb.append(getStackTraceAsString());

        if (getCause() != null) {
            sb.append("\n");
            sb.append("This exception was thrown because of the following underlying exception:\n\n");
            sb.append(getCause().getClass().getName());
            sb.append("\n\n");

            String msg = getCause().getLocalizedMessage();

            if (msg != null) {
                sb.append("Message:\n").append(msg).append("\n\n");
            }

            sb.append("Stack trace:\n");
            sb.append(MCRException.getStackTraceAsString(getCause()));
        }

        toStringInvocationCounter--;

        return sb.toString();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy