-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
## Bug fixes * Fix error when using login() method in async function [#34] * Fix and improve error message in fs.decode (async) [#35]
- Loading branch information
Showing
11 changed files
with
159 additions
and
56 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[project] | ||
name = "flet-easy" | ||
version = "0.2.8" | ||
version = "0.2.9" | ||
description = "⚡Flet-Easy is a user-friendly add-on package for Flet, offering a cleaner code structure with numerous customizable features like JWT, routers, decorators, middleware and more." | ||
authors = [{ name = "Daxexs", email = "[email protected]" }] | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
class FletEasyError(Exception): | ||
"""FletEasy error captured""" | ||
|
||
pass | ||
|
||
|
||
class LoginError(FletEasyError): | ||
"""Login error captured""" | ||
|
||
pass | ||
|
||
|
||
class LoginRequiredError(FletEasyError): | ||
"""Login required - used in route FletEasyX""" | ||
|
||
pass | ||
|
||
|
||
class RouteError(FletEasyError): | ||
"""Route error""" | ||
|
||
pass | ||
|
||
|
||
class AlgorithmJwtError(FletEasyError): | ||
"""Algorithm error""" | ||
|
||
pass | ||
|
||
|
||
class LogoutError(FletEasyError): | ||
"""Logout error""" | ||
|
||
pass | ||
|
||
|
||
class MidlewareError(FletEasyError): | ||
"""Middleware error""" | ||
|
||
pass | ||
|
||
|
||
class AddPagesError(FletEasyError): | ||
"""Add pages error in route""" | ||
|
||
pass |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.