base32-0.2.1.0: Fast RFC 4648-compliant Base32 encoding
Copyright(c) 2019-2020 Emily Pillmore
LicenseBSD-style
MaintainerEmily Pillmore <emilypi@cohomolo.gy>
Stabilitystable
Portabilitynon-portable
Safe HaskellSafe
LanguageHaskell2010

Data.Text.Encoding.Base32.Error

Description

This module contains the error types raised (not as exceptions!) in the decoding process.

Synopsis

Documentation

data Base32Error e Source #

This data type represents the type of decoding errors of various kinds as they pertain to decoding Text values. Namely, to distinguish between decoding errors from opaque unicode exceptions caught in the unicode decoding process.

Constructors

DecodeError Text

The error associated with decoding failure as a result of the Base32 decoding process

ConversionError e

The error associated with the decoding failure as a result of the conversion process

Instances

Instances details
Eq e => Eq (Base32Error e) Source # 
Instance details

Defined in Data.Text.Encoding.Base32.Error

Show e => Show (Base32Error e) Source # 
Instance details

Defined in Data.Text.Encoding.Base32.Error

Generic (Base32Error e) Source #

Since: 0.2.0.0

Instance details

Defined in Data.Text.Encoding.Base32.Error

Associated Types

type Rep (Base32Error e) :: Type -> Type #

Methods

from :: Base32Error e -> Rep (Base32Error e) x #

to :: Rep (Base32Error e) x -> Base32Error e #

Exception e => Exception (Base32Error e) Source #

Since: 0.2.0.0

Instance details

Defined in Data.Text.Encoding.Base32.Error

NFData e => NFData (Base32Error e) Source #

Since: 0.2.0.0

Instance details

Defined in Data.Text.Encoding.Base32.Error

Methods

rnf :: Base32Error e -> () #

type Rep (Base32Error e) Source # 
Instance details

Defined in Data.Text.Encoding.Base32.Error

type Rep (Base32Error e) = D1 ('MetaData "Base32Error" "Data.Text.Encoding.Base32.Error" "base32-0.2.1.0-inplace" 'False) (C1 ('MetaCons "DecodeError" 'PrefixI 'False) (S1 ('MetaSel ('Nothing :: Maybe Symbol) 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedLazy) (Rec0 Text)) :+: C1 ('MetaCons "ConversionError" 'PrefixI 'False) (S1 ('MetaSel ('Nothing :: Maybe Symbol) 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedLazy) (Rec0 e)))