blob: 41d31145737135642025bfa73895276829ced023 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2019 Christian Pontesegger 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
* https://www.eclipse.org/legal/epl-2.0/
*
* Contributors:
* Christian Pontesegger - initial API and implementation
*******************************************************************************/
package org.eclipse.ease.helpgenerator;
public class ContentException extends Exception {
public ContentException() {
super();
}
public ContentException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) {
super(message, cause, enableSuppression, writableStackTrace);
}
public ContentException(String message, Throwable cause) {
super(message, cause);
}
public ContentException(String message) {
super(message);
}
public ContentException(Throwable cause) {
super(cause);
}
}