]> gitweb.fperrin.net Git - Dictionary.git/blob - jars/icu4j-4_8_1_1/main/classes/core/src/com/ibm/icu/util/UResourceTypeMismatchException.java
Added flags.
[Dictionary.git] / jars / icu4j-4_8_1_1 / main / classes / core / src / com / ibm / icu / util / UResourceTypeMismatchException.java
1 /*
2 ******************************************************************************
3 * Copyright (C) 2004-2006, International Business Machines Corporation and   *
4 * others. All Rights Reserved.                                               *
5 ******************************************************************************
6 */
7
8 package com.ibm.icu.util;
9
10 /**
11  * Exception thrown when the requested resource type 
12  * is not the same type as the available resource
13  * @author ram
14  * @stable ICU 3.0
15  */
16 public class UResourceTypeMismatchException extends RuntimeException {
17     // Generated by serialver from JDK 1.4.1_01
18     static final long serialVersionUID = 1286569061095434541L;
19     
20     /**
21      * Constuct the exception with the given message
22      * @param msg the error message for this exception
23      * @stable ICU 3.0
24      */
25     public UResourceTypeMismatchException(String msg){
26         super(msg);       
27     }
28 }