blob: d88d6a8efa2531cf8f974e228cd92e779af89ea1 [file] [log] [blame]
/* GENERATED SOURCE. DO NOT MODIFY. */
/*
******************************************************************************
* Copyright (C) 2004-2006, International Business Machines Corporation and *
* others. All Rights Reserved. *
******************************************************************************
*/
package android.icu.util;
/**
* Exception thrown when the requested resource type
* is not the same type as the available resource
* @author ram
* @hide Only a subset of ICU is exposed in Android
* @hide All android.icu classes are currently hidden
*/
public class UResourceTypeMismatchException extends RuntimeException {
// Generated by serialver from JDK 1.4.1_01
static final long serialVersionUID = 1286569061095434541L;
/**
* Constuct the exception with the given message
* @param msg the error message for this exception
*/
public UResourceTypeMismatchException(String msg){
super(msg);
}
}