summaryrefslogtreecommitdiffstats
path: root/luni/src/main/java/java/util/MissingResourceException.java
diff options
context:
space:
mode:
Diffstat (limited to 'luni/src/main/java/java/util/MissingResourceException.java')
-rw-r--r--luni/src/main/java/java/util/MissingResourceException.java76
1 files changed, 76 insertions, 0 deletions
diff --git a/luni/src/main/java/java/util/MissingResourceException.java b/luni/src/main/java/java/util/MissingResourceException.java
new file mode 100644
index 0000000..c3a7efe
--- /dev/null
+++ b/luni/src/main/java/java/util/MissingResourceException.java
@@ -0,0 +1,76 @@
+/*
+ * 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
+ * @since Android 1.0
+ */
+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;
+ }
+
+}