| Copyright | (c) Sebastian Witte |
|---|---|
| License | Apache-2.0 |
| Maintainer | woozletoff@gmail.com |
| Stability | experimental |
| Portability | GHC |
| Safe Haskell | None |
| Language | Haskell2010 |
Neovim.Exceptions
Description
Synopsis
Documentation
data NeovimException Source #
Exceptions specific to nvim-hs.
Constructors
| ErrorMessage (Doc AnsiStyle) | Simply error message that is passed to neovim. It should currently only contain one line of text. |
| ErrorResult Object | Error that can be returned by a remote API call. A call of |
Instances
| Show NeovimException Source # | |
Defined in Neovim.Exceptions Methods showsPrec :: Int -> NeovimException -> ShowS # show :: NeovimException -> String # showList :: [NeovimException] -> ShowS # | |
| IsString NeovimException Source # | |
Defined in Neovim.Exceptions Methods fromString :: String -> NeovimException # | |
| Exception NeovimException Source # | |
Defined in Neovim.Exceptions Methods toException :: NeovimException -> SomeException # | |