13 lines
314 B
Java
13 lines
314 B
Java
package com.eactive.eai.control;
|
|
|
|
public class JMSQueueReceiverTimeOutException extends Exception
|
|
{
|
|
public JMSQueueReceiverTimeOutException() {
|
|
super("JMSQueueReceiverTimeOutException is occured.");
|
|
}
|
|
|
|
public JMSQueueReceiverTimeOutException(String msg) {
|
|
super(msg);
|
|
}
|
|
}
|