All Downloads are FREE. Search and download functionalities are using the official Maven repository.

javax.jms.ResourceAllocationException Maven / Gradle / Ivy

There is a newer version: 0.68.0.1
Show newest version
/*
 * @(#)ResourceAllocationException.java	1.6 02/04/09
 *
 * Copyright 1997-2002 Sun Microsystems, Inc. All Rights Reserved.
 *
 *  SUN PROPRIETARY/CONFIDENTIAL.
 * This software is the proprietary information of Sun Microsystems, Inc.  
 * Use is subject to license terms.
 * 
 */


package javax.jms;

/**
 * 

This exception is thrown when a provider is unable to allocate the * resources required by a method. For example, this exception should be * thrown when a call to * TopicConnectionFactory.createTopicConnection fails due to a * lack of JMS provider resources. * * @version 26 August 1998 * @author Rahul Sharma **/ public class ResourceAllocationException extends JMSException { /** Constructs a ResourceAllocationException with the specified * reason and error code. * * @param reason a description of the exception * @param errorCode a string specifying the vendor-specific * error code * **/ public ResourceAllocationException(String reason, String errorCode) { super(reason, errorCode); } /** Constructs a ResourceAllocationException with the specified * reason. The error code defaults to null. * * @param reason a description of the exception **/ public ResourceAllocationException(String reason) { super(reason); } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy