Skip to content

Commit

Permalink
v0.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
kramcat authored Jun 8, 2023
1 parent cdbcf35 commit b204506
Showing 1 changed file with 13 additions and 4 deletions.
17 changes: 13 additions & 4 deletions characterai/errors.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,17 @@
class pyCAIError(Exception):
class PyCAIError(Exception):
pass

class NoResponse(pyCAIError):
class ServerError(PyCAIError):
pass

class CharNotFound(pyCAIError):
pass
class FilterError(PyCAIError):
pass

class NotFoundError(PyCAIError):
pass

class LabelError(PyCAIError):
pass

class AuthError(PyCAIError):
pass

0 comments on commit b204506

Please sign in to comment.