blob: 2819ce3f64a2b776c22870bdf9679fb5796bd51e [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2014, 2016 Orange.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*******************************************************************************/
package org.eclipse.om2m.sdt.exceptions;
public class ModuleException extends Exception {
public ModuleException() {
super();
}
public ModuleException(String message) {
super(message);
}
public ModuleException(Throwable cause) {
super(cause);
}
public ModuleException(String message, Throwable cause) {
super(message, cause);
}
}