Home | History | Annotate | Download | only in impl
      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 android.icu.impl;
     11 
     12 /**
     13  * @author markdavis
     14  * @hide Only a subset of ICU is exposed in Android
     15  *
     16  */
     17 public class IllegalIcuArgumentException extends IllegalArgumentException {
     18     private static final long serialVersionUID = 3789261542830211225L;
     19 
     20     public IllegalIcuArgumentException(String errorMessage) {
     21         super(errorMessage);
     22     }
     23 
     24     public IllegalIcuArgumentException(Throwable cause) {
     25         super(cause);
     26     }
     27 
     28     public IllegalIcuArgumentException(String errorMessage, Throwable cause) {
     29         super(errorMessage, cause);
     30     }
     31 
     32     @Override
     33     public synchronized IllegalIcuArgumentException initCause(Throwable cause) {
     34         return (IllegalIcuArgumentException) super.initCause(cause);
     35     }
     36 
     37 }
     38