Skip to content

Commit

Permalink
Merge pull request #38 from aaugustin/fix-exceptions
Browse files Browse the repository at this point in the history
Derive exceptions from Exception.
  • Loading branch information
owais committed Jan 24, 2016
2 parents b91c62b + a61255c commit b00bf80
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions webpack_loader/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,11 +31,11 @@
entry['ignores'] = [re.compile(I) for I in entry['IGNORE']]


class WebpackError(BaseException):
class WebpackError(Exception):
pass


class WebpackLoaderBadStatsError(BaseException):
class WebpackLoaderBadStatsError(Exception):
pass


Expand Down

0 comments on commit b00bf80

Please sign in to comment.