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