• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 package com.ethlo.time;
2 
3 import java.time.DateTimeException;
4 
5 /**
6  * Optional dependency that is stubbed to satisfy Android build
7  */
8 public class LeapSecondException extends DateTimeException {
LeapSecondException(String string)9     LeapSecondException(String string) {
10         super(string);
11     }
12 
isVerifiedValidLeapYearMonth()13     public boolean isVerifiedValidLeapYearMonth()
14     {
15         throw new UnsupportedOperationException();
16     }
17 }
18