/** * JWave - Java implementation of wavelet transform algorithms * * Copyright 2010-2012 Christian Scheiblich * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. * * This file BlockException.java is part of JWave. * * @author tucker * date 11.06.2011 20:04:19 * contact graetz@mailfish.de */ package math.transform.jwave.blocks.exc; import math.transform.jwave.exc.JWaveException; /** * Exception class for the block package. * * @date 11.06.2011 20:04:19 * @author Christian Scheiblich */ public class BlockException extends JWaveException { /** * Generated serial id. * * @date 11.06.2011 20:05:43 * @author Christian Scheiblich */ private static final long serialVersionUID = 3348636428006375494L; /** * Constructor for exception message. * * @date 11.06.2011 20:04:19 * @author Christian Scheiblich * @param message */ public BlockException( String message ) { super( message ); } /** * Constructor taking any Java based exception. * * @date 11.06.2011 20:04:19 * @author Christian Scheiblich * @param e * object of type java.lang.Exception */ public BlockException( Exception e ) { super( e ); } } // class