source: trunk/icedtea-web/netx/javax/jnlp/UnavailableServiceException.java

Last change on this file was 348, checked in by dmik, 13 years ago

vendor: Add icedtea-web v1.1.2 to current.

File size: 250 bytes
Line 
1package javax.jnlp;
2
3public class UnavailableServiceException extends Exception {
4
5 public UnavailableServiceException() {
6 super();
7 }
8
9 public UnavailableServiceException(java.lang.String message) {
10 super(message);
11 }
12
13}
Note: See TracBrowser for help on using the repository browser.