What do you do in the case of in data definitions when you have a long name and a deriving clause? ``` haskell data HttpException = InvalidStatusCode Int | MissingContentHeader deriving Show ``` or ``` haskell data HttpException = InvalidStatusCode Int | MissingContentHeader deriving Show ```