blob: 011ee57a30c9fb42b31b2affd374ce9cce618fc6 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2007, 2018 Borland Software Corporation and others.
*
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v2.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v20.html
*
* Contributors:
* Borland Software Corporation - initial API and implementation
*******************************************************************************/
/*
* Created on May 31, 2005
*/
package org.eclipse.m2m.internal.qvt.oml.ocl.transformations;
public class LibraryCreationException extends Exception {
private static final long serialVersionUID = -4703260527546635146L;
public LibraryCreationException(String message) {
super(message);
}
public LibraryCreationException(String message, Throwable cause) {
super(message, cause);
}
}