blob: 914c861b4f390a8233e132e93f562111d5dd25a3 [file] [log] [blame]
/**
* Copyright (c) 2012, 2015 - Lunifera GmbH (Austria), Loetz GmbH&Co.KG and others.
* 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:
* Florian Pirchner - initial API and implementation
*/
package org.eclipse.osbp.ecview.core.common.context;
/**
* Exception thrown by contexts.
*/
@SuppressWarnings("serial")
public class ContextException extends Exception {
/**
* Constructor.
*/
public ContextException() {
super();
}
/**
* Constructor.
* @param message Message to be contained
*/
public ContextException(String message) {
super(message);
}
}