1/*
2******************************************************************************
3* Copyright (C) 2004-2006, International Business Machines Corporation and   *
4* others. All Rights Reserved.                                               *
5******************************************************************************
6*/
7
8package 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 */
16public 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}
29