01: /*
02: * $RCSfile: ServiceConfigurationError.java,v $
03: *
04: * Copyright (c) 2005 Sun Microsystems, Inc. All rights reserved.
05: *
06: * Use is subject to license terms.
07: *
08: * $Revision: 1.1 $
09: * $Date: 2005/02/11 04:57:02 $
10: * $State: Exp $
11: */
12: // This code is copied from the javax.media.imageio.spi
13: //
14: // Original SCCS ID: @(#)Service.java 1.4 00/05/23
15: package com.sun.media.jai.util;
16:
17: /**
18: * Error thrown when something goes wrong while looking up service providers.
19: * In particular, this error will be thrown in the following situations:
20: *
21: * <ul>
22: * <li> A concrete provider class cannot be found,
23: * <li> A concrete provider class cannot be instantiated,
24: * <li> The format of a provider-configuration file is illegal, or
25: * <li> An IOException occurs while reading a provider-configuration file.
26: * </ul>
27: *
28: * @since 1.3
29: */
30:
31: class ServiceConfigurationError extends Error {
32:
33: /**
34: * Constructs a new instance with the specified detail string.
35: */
36: public ServiceConfigurationError(String msg) {
37: super(msg);
38: }
39:
40: }
|