blob: 39b4c424a49f85a917dcb1957cb0ed3068334641 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2005, 2007 IBM Corporation and others.
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License v. 2.0 which is available at
* http://www.eclipse.org/legal/epl-2.0.
*
* SPDX-License-Identifier: EPL-2.0
*
*******************************************************************************/
package org.eclipse.dltk.dbgp;
public class DbgpServerException extends Exception {
private static final long serialVersionUID = 1L;
public DbgpServerException() {
super();
}
public DbgpServerException(String message, Throwable cause) {
super(message, cause);
}
public DbgpServerException(String message) {
super(message);
}
public DbgpServerException(Throwable cause) {
super(cause);
}
}