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) 2009, International Business Machines Corporation and * 7 * others. All Rights Reserved. * 8 ******************************************************************************* 9 */ 10 package ohos.global.icu.impl.locale; 11 12 /** 13 * @hide exposed on OHOS 14 */ 15 public class LocaleSyntaxException extends Exception { 16 17 private static final long serialVersionUID = 1L; 18 19 private int _index = -1; 20 LocaleSyntaxException(String msg)21 public LocaleSyntaxException(String msg) { 22 this(msg, 0); 23 } 24 LocaleSyntaxException(String msg, int errorIndex)25 public LocaleSyntaxException(String msg, int errorIndex) { 26 super(msg); 27 _index = errorIndex; 28 } 29 getErrorIndex()30 public int getErrorIndex() { 31 return _index; 32 } 33 } 34