We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 438912f commit 29be576Copy full SHA for 29be576
servant-client/src/Servant/Common/Req.hs
@@ -55,6 +55,19 @@ data ServantError
55
}
56
deriving (Show, Typeable)
57
58
+instance Eq ServantError where
59
+ FailureResponse a b c == FailureResponse x y z =
60
+ (a, b, c) == (x, y, z)
61
+ DecodeFailure a b c == DecodeFailure x y z =
62
63
+ UnsupportedContentType a b == UnsupportedContentType x y =
64
+ (a, b) == (x, y)
65
+ InvalidContentTypeHeader a b == InvalidContentTypeHeader x y =
66
67
+ ConnectionError a == ConnectionError x =
68
+ show a == show x
69
+ _ == _ = False
70
+
71
instance Exception ServantError
72
73
data Req = Req
0 commit comments