• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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, Google, International Business Machines Corporation and         *
7  * others. All Rights Reserved.                                                *
8  *******************************************************************************
9  */
10 package ohos.global.icu.impl;
11 
12 /**
13  * @author markdavis
14  * @hide exposed on OHOS
15  *
16  */
17 public class IllegalIcuArgumentException extends IllegalArgumentException {
18     private static final long serialVersionUID = 3789261542830211225L;
19 
IllegalIcuArgumentException(String errorMessage)20     public IllegalIcuArgumentException(String errorMessage) {
21         super(errorMessage);
22     }
23 
IllegalIcuArgumentException(Throwable cause)24     public IllegalIcuArgumentException(Throwable cause) {
25         super(cause);
26     }
27 
IllegalIcuArgumentException(String errorMessage, Throwable cause)28     public IllegalIcuArgumentException(String errorMessage, Throwable cause) {
29         super(errorMessage, cause);
30     }
31 
32     @Override
initCause(Throwable cause)33     public synchronized IllegalIcuArgumentException initCause(Throwable cause) {
34         return (IllegalIcuArgumentException) super.initCause(cause);
35     }
36 
37 }
38