blob: 9edce9a539a61626c0b598c8feeb48a727749d31 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package java.util;
/**
* A {@code MissingResourceException} is thrown by ResourceBundle when a
* resource bundle cannot be found or a resource is missing from a resource
* bundle.
*
* @see ResourceBundle
* @see java.lang.RuntimeException
*/
public class MissingResourceException extends RuntimeException {
private static final long serialVersionUID = -4876345176062000401L;
String className, key;
/**
* Constructs a new {@code MissingResourceException} with the stack trace,
* message, the class name of the resource bundle and the name of the
* missing resource filled in.
*
* @param detailMessage
* the detail message for the exception.
* @param className
* the class name of the resource bundle.
* @param resourceName
* the name of the missing resource.
*/
public MissingResourceException(String detailMessage, String className,
String resourceName) {
super(detailMessage);
this.className = className;
key = resourceName;
}
/**
* Returns the class name of the resource bundle from which a resource could
* not be found, or in the case of a missing resource, the name of the
* missing resource bundle.
*
* @return the class name of the resource bundle.
*/
public String getClassName() {
return className;
}
/**
* Returns the name of the missing resource, or an empty string if the
* resource bundle is missing.
*
* @return the name of the missing resource.
*/
public String getKey() {
return key;
}
}