1// © 2016 and later: Unicode, Inc. and others.
2// License & terms of use: http://www.unicode.org/copyright.html#License
3/*
4******************************************************************************
5* Copyright (C) 2004-2006, International Business Machines Corporation and   *
6* others. All Rights Reserved.                                               *
7******************************************************************************
8*/
9
10package com.ibm.icu.util;
11
12/**
13 * Exception thrown when the requested resource type
14 * is not the same type as the available resource
15 * @author ram
16 * @stable ICU 3.0
17 */
18public class UResourceTypeMismatchException extends RuntimeException {
19    // Generated by serialver from JDK 1.4.1_01
20    static final long serialVersionUID = 1286569061095434541L;
21
22    /**
23     * Constuct the exception with the given message
24     * @param msg the error message for this exception
25     * @stable ICU 3.0
26     */
27    public UResourceTypeMismatchException(String msg){
28        super(msg);
29    }
30}
31