/**
* 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 BlockError.java is part of JWave.
*
* @author tucker
* date 11.06.2011 20:08:51
* contact graetz@mailfish.de
*/
package math.transform.jwave.blocks.exc;
/**
* Error class as an non-recoverable exception.
*
* @date 11.06.2011 20:08:51
* @author Christian Scheiblich
*/
public class BlockError extends BlockException {
/**
* Generated serial id.
*
* @date 11.06.2011 20:09:56
* @author Christian Scheiblich
*/
private static final long serialVersionUID = 3813313081473155788L;
/**
* Constructor for error message.
*
* @date 11.06.2011 20:08:51
* @author Christian Scheiblich
* @param message
*/
public BlockError( String message ) {
super( message );
}
/**
* Constructor taking any Java based exception.
*
* @date 11.06.2011 20:08:51
* @author Christian Scheiblich
* @param e
* object of type java.lang.Exception
*/
public BlockError( Exception e ) {
super( e );
}
} // class