JukesException.java :  » Music » jukes » com » melloware » jukes » exception » Java Open Source

Java Open Source » Music » jukes 
jukes » com » melloware » jukes » exception » JukesException.java
package com.melloware.jukes.exception;

import org.apache.commons.lang.exception.NestableException;

/**
 * Base Exception for all wrapped exceptions in PUYJ.
 * <p>
 * Copyright (c) 1999-2007 Melloware, Inc. <http://www.melloware.com>
 * @author Emil A. Lefkof III <info@melloware.com>
 * @version 4.0
 */
public class JukesException extends NestableException {

    /**
     * Default Constructor
     */
    public JukesException() {
        super();
    }

    /**
     * Constructor that takes a message.
     * @param aMessage the message to contain
     */
    public JukesException(String aMessage) {
        super(aMessage);
    }

    /**
     * Constructor takes a message and exception.
     * <p>
     * @param aMessage the message
     * @param aThrowable the wrapped exception
     */
    public JukesException(String aMessage, Throwable aThrowable) {
        super(aMessage, aThrowable);
    }

    /**
     * Constructor that wraps another exception.
     * <p>
     * @param aThrowable
     */
    public JukesException(Throwable aThrowable) {
        super(aThrowable);
    }

}
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.