Skip to content

Commit

Permalink
fix: make GlobSyntaxError derive from CatchableError
Browse files Browse the repository at this point in the history
  • Loading branch information
haltcase committed Nov 9, 2020
1 parent cb7cdd9 commit 09e50e1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/glob/regexer.nim
Expand Up @@ -7,7 +7,7 @@ it separately isn't necessary, it could be imported independently of the main

from strutils import spaces

type GlobSyntaxError* = object of Exception
type GlobSyntaxError* = object of CatchableError
## Raised if the parsing of a glob pattern fails.

const
Expand Down

0 comments on commit 09e50e1

Please sign in to comment.