blob: 2f98e9ac6ef36d66184058b07f42f66490ec1209 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2010, 2013 Copyright (c) 2010-2013 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.1, $Date: 2013-05-12 $
* @deprecated this may not be used, consider removing it before 1.0
*/
public class UOMoError extends Error {
/**
*
*/
private static final long serialVersionUID = 4314692361098674055L;
/**
* Constructs from an error message.
*
* @param message
* The error message.
*/
public UOMoError(final String message) {
super(message);
}
}