module Rattletrap.Exception.UnknownAttribute where

import qualified Control.Exception as Exception

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

instance Exception.Exception UnknownAttribute