blob: fbaa1c3ae2ab89df9113a66c4332e30e039c23c4 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2010, Copyright (c) 2010 Creative Arts & Technologies.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* Werner Keil, Creative Arts & Technologies - initial API and implementation
*******************************************************************************/
package org.eclipse.uomo.core;
/**
* @author <a href="mailto:oumo@catmedia.us">Werner Keil</a>
* @version 1.2, $Date: 2010-09-11 17:42:22 +0200 (Sa, 11 Sep 2010) $
*/
public class UOMoException extends Exception {
/**
*
*/
private static final long serialVersionUID = -5878541642974988679L;
/**
* Constructs from an error message.
*
* @param message
* The error message.
*/
public UOMoException(final String message) {
super(message);
}
public UOMoException(String message, Throwable causingException) {
super(message, causingException);
}
public UOMoException(Throwable causingException) {
super(causingException);
}
}