KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > ibm > icu > util > UResourceTypeMismatchException


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 JavaDoc {
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 JavaDoc msg){
26         super(msg);
27     }
28 }
29
Popular Tags