All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.ibm.icu.util.UResourceTypeMismatchException Maven / Gradle / Ivy

There is a newer version: 2.12.15
Show newest version
// © 2016 and later: Unicode, Inc. and others.
// License & terms of use: http://www.unicode.org/copyright.html#License
/*
******************************************************************************
* Copyright (C) 2004-2006, International Business Machines Corporation and   *
* others. All Rights Reserved.                                               *
******************************************************************************
*/

package com.ibm.icu.util;

/**
 * Exception thrown when the requested resource type 
 * is not the same type as the available resource
 * @author ram
 * @stable ICU 3.0
 */
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
     * @stable ICU 3.0
     */
    public UResourceTypeMismatchException(String msg){
        super(msg);       
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy