Home | History | Annotate | Download | only in impl
      1 //  2016 and later: Unicode, Inc. and others.
      2 // License & terms of use: http://www.unicode.org/copyright.html#License
      3 /**
      4 *******************************************************************************
      5 * Copyright (C) 2006-2015, International Business Machines Corporation and
      6 * others. All Rights Reserved.
      7 *******************************************************************************
      8 *
      9 *******************************************************************************
     10 */
     11 package com.ibm.icu.impl;
     12 
     13 public class InvalidFormatException extends Exception {
     14 
     15     // Generated by serialver from JDK 1.4.1_01
     16     static final long serialVersionUID = 8883328905089345791L;
     17 
     18     public InvalidFormatException(){}
     19 
     20     public InvalidFormatException(Throwable cause) {
     21         super(cause);
     22     }
     23 
     24     public InvalidFormatException(String message) {
     25         super(message);
     26     }
     27 }
     28