blob: 5e49589f6d3c2f8063bfa08bd23c6079f157ac98 [file] [log] [blame]
/******************************************************************************
* Copyright (c) 2006 IBM Corporation.
* 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:
* IBM Corporation - Initial Implementation
*
*****************************************************************************/
package org.eclipse.ptp.remotetools.exception;
import org.eclipse.osgi.util.NLS;
public class RemoteConnectionException extends RemoteException {
private static final long serialVersionUID = 1L;
int errorCode = UNKNOWN;
public static final int UNKNOWN = 0;
public static final int LOST_CONNECTION = 1;
public RemoteConnectionException(String message, Throwable cause) {
super(message, cause);
// TODO Auto-generated constructor stub
}
public RemoteConnectionException(String message) {
super(message);
// TODO Auto-generated constructor stub
}
public RemoteConnectionException(Throwable cause) {
super(cause);
// TODO Auto-generated constructor stub
}
public RemoteConnectionException(int errorCode) {
super();
this.errorCode = errorCode;
}
public int getErrorCode() {
return errorCode;
}
public String getLocalizedMessage() {
return super.getMessage();
}
// public String getMessage() {
// String result = "";
// switch (errorCode) {
// case LOST_CONNECTION:
// result = "Connection to remote host was lost";
// break;
// default:
// result = NLS.bind("Unknown connection error, code {0}", Integer.toString(errorCode));
// break;
// }
// if (super.getMessage() != null) {
// NLS.bind("{0} ({1})", new Object [] { result, super.getMessage()});
// }
// return result;
// }
}