Copyright | (C) 2016 Jason Johnson |
---|---|
License | BSD-style (see the file LICENSE) |
Maintainer | Jason Johnson <jason.johnson.081@gmail.com> |
Stability | experimental |
Portability | TBD |
Safe Haskell | Safe-Inferred |
Language | Haskell2010 |
Data.HodaTime.Exceptions
Contents
Description
Exceptions defined by this library.
Synopsis
Types
data DayRequiredException Source #
Day is required for parse pattern
Constructors
DayRequiredException |
Instances
Exception DayRequiredException Source # | |
Defined in Data.HodaTime.Exceptions Methods toException :: DayRequiredException -> SomeException # fromException :: SomeException -> Maybe DayRequiredException # | |
Show DayRequiredException Source # | |
Defined in Data.HodaTime.Exceptions Methods showsPrec :: Int -> DayRequiredException -> ShowS # show :: DayRequiredException -> String # showList :: [DayRequiredException] -> ShowS # |
data MonthRequiredException Source #
Month is required for parse pattern
Constructors
MonthRequiredException |
Instances
Exception MonthRequiredException Source # | |
Defined in Data.HodaTime.Exceptions | |
Show MonthRequiredException Source # | |
Defined in Data.HodaTime.Exceptions Methods showsPrec :: Int -> MonthRequiredException -> ShowS # show :: MonthRequiredException -> String # showList :: [MonthRequiredException] -> ShowS # |
data YearRequiredException Source #
Year is required for parse pattern
Constructors
YearRequiredException |
Instances
Exception YearRequiredException Source # | |
Defined in Data.HodaTime.Exceptions | |
Show YearRequiredException Source # | |
Defined in Data.HodaTime.Exceptions Methods showsPrec :: Int -> YearRequiredException -> ShowS # show :: YearRequiredException -> String # showList :: [YearRequiredException] -> ShowS # |