KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > javax > management > ServiceNotFoundException


1 /*
2  * @(#)ServiceNotFoundException.java 4.16 03/12/19
3  *
4  * Copyright 2004 Sun Microsystems, Inc. All rights reserved.
5  * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
6  */

7
8 package javax.management;
9
10 //RI import
11
import javax.management.OperationsException JavaDoc;
12
13
14 /**
15  * Represents exceptions raised when a requested service is not supported.
16  *
17  * @since 1.5
18  */

19 public class ServiceNotFoundException extends OperationsException JavaDoc {
20     
21     /* Serial version */
22     private static final long serialVersionUID = -3990675661956646827L;
23
24     /**
25      * Default constructor.
26      */

27     public ServiceNotFoundException() {
28     super();
29     }
30     
31     /**
32      * Constructor that allows a specific error message to be specified.
33      *
34      * @param message the detail message.
35      */

36     public ServiceNotFoundException(String JavaDoc message) {
37     super(message);
38     }
39
40  }
41
Popular Tags