]> granicus.if.org Git - icu/blob
bceba10d6cdc5925544198e5f85267d257db6c5d
[icu] /
1 /*
2  *******************************************************************************
3  * Copyright (C) 2009-2011, International Business Machines Corporation and    *
4  * others. All Rights Reserved.                                                *
5  *******************************************************************************
6  */
7 package com.ibm.icu.impl.locale;
8
9 public class LocaleSyntaxException extends Exception {
10
11     private static final long serialVersionUID = 1L;
12
13     private int _index = -1;
14
15     public LocaleSyntaxException(String msg) {
16         this(msg, 0);
17     }
18
19     public LocaleSyntaxException(String msg, int errorIndex) {
20         super(msg);
21         _index = errorIndex;
22     }
23
24     public int getErrorIndex() {
25         return _index;
26     }
27 }