module Rattletrap.Exception.MissingAttributeLimit where

import qualified Control.Exception as Exception

newtype MissingAttributeLimit
  = MissingAttributeLimit Word
  deriving (MissingAttributeLimit -> MissingAttributeLimit -> Bool
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
/= :: MissingAttributeLimit -> MissingAttributeLimit -> Bool
$c/= :: MissingAttributeLimit -> MissingAttributeLimit -> Bool
== :: MissingAttributeLimit -> MissingAttributeLimit -> Bool
$c== :: MissingAttributeLimit -> MissingAttributeLimit -> Bool
Eq, Int -> MissingAttributeLimit -> ShowS
[MissingAttributeLimit] -> ShowS
MissingAttributeLimit -> String
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
showList :: [MissingAttributeLimit] -> ShowS
$cshowList :: [MissingAttributeLimit] -> ShowS
show :: MissingAttributeLimit -> String
$cshow :: MissingAttributeLimit -> String
showsPrec :: Int -> MissingAttributeLimit -> ShowS
$cshowsPrec :: Int -> MissingAttributeLimit -> ShowS
Show)

instance Exception.Exception MissingAttributeLimit