blob: 0984c4917ee14645ef6d27698f590f0affe2262e [file] [log] [blame]
package com.intellij.remoteServer.util;
/**
* @author michael.golubev
*/
public class ServerRuntimeException extends Exception {
public ServerRuntimeException(Throwable cause) {
super(cause);
}
public ServerRuntimeException(String message) {
super(message);
}
}