KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > ubermq > jms > client > JMSUnsupportedOperationException


1 package com.ubermq.jms.client;
2
3 /**
4  * Indicates that particular functionality is not implemented in this version
5  * of the software.
6  */

7 public class JMSUnsupportedOperationException
8     extends javax.jms.JMSException JavaDoc
9 {
10     public JMSUnsupportedOperationException()
11     {
12         super("Operation is not supported in this implementation.");
13     }
14 }
15         
16
Popular Tags