alvinalexander.com | career | drupal | java | mac | mysql | perl | scala | uml | unix  

Glassfish example source code file (ServiceUnavailableException.java)

This example Glassfish source code file (ServiceUnavailableException.java) is included in the DevDaily.com "Java Source Code Warehouse" project. The intent of this project is to help you "Learn Java by Example" TM.

Java - Glassfish tags/keywords

serviceexception, serviceexception, serviceunavailableexception, serviceunavailableexception, throwable, throwable

The Glassfish ServiceUnavailableException.java source code

package org.glassfish.osgicdi;

import org.osgi.framework.ServiceException;

/**
 * This exception is thrown to indicate that the service is unavailable.
 * If an <code>OSGiService service reference is marked as dynamic, 
 * an attempt is made to get a reference to the service in the OSGi Service 
 * Registry when the service is used, and then the method is 
 * invoked on the newly obtained service. If the service cannot be discovered
 * or a reference obtained, the <code>ServiceUnavailableException
 * is thrown.
 * 
 * @author Sivakumar Thyagarajan
 */
public class ServiceUnavailableException extends ServiceException {

    private static final long serialVersionUID = -8776963108373969053L;

    /**
     * {@inheritDoc}
     */
    public ServiceUnavailableException(String msg, int type, Throwable cause) {
        super(msg, type, cause);
    }

}

Other Glassfish examples (source code examples)

Here is a short list of links related to this Glassfish ServiceUnavailableException.java source code file:

... this post is sponsored by my books ...

#1 New Release!

FP Best Seller

 

new blog posts

 

Copyright 1998-2021 Alvin Alexander, alvinalexander.com
All Rights Reserved.

A percentage of advertising revenue from
pages under the /java/jwarehouse URI on this website is
paid back to open source projects.