com.sshtools.javardp.OrderException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of rdp Show documentation
Show all versions of rdp Show documentation
Swing RDP component based on ProperJavaRDP with some modifications to allow multiple sessions within the same runtime, and to fix some bugs and inconsistencies with newer Windows versions.
The newest version!
/* OrderException.java
* Component: ProperJavaRDP
*
* Revision: $Revision: 1.1 $
* Author: $Author: brett $
* Date: $Date: 2011/11/28 14:13:42 $
*
* Copyright (c) 2005 Propero Limited
*
* Purpose:
*/
package com.sshtools.javardp;
public class OrderException extends RdesktopException {
private static final long serialVersionUID = 6364281713782083731L;
public OrderException() {
super();
}
public OrderException(String message, Throwable cause) {
super(message, cause);
}
public OrderException(String message) {
super(message);
}
public OrderException(Throwable cause) {
super(cause);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy