New Authentication Error Signed-off-by: Imesh Gunaratne <[email protected]>
Project: http://git-wip-us.apache.org/repos/asf/stratos/repo Commit: http://git-wip-us.apache.org/repos/asf/stratos/commit/ea42e1ec Tree: http://git-wip-us.apache.org/repos/asf/stratos/tree/ea42e1ec Diff: http://git-wip-us.apache.org/repos/asf/stratos/diff/ea42e1ec Branch: refs/heads/stratos-4.1.x Commit: ea42e1ecd607bbfd0255e602308e1fb8f15ebd9a Parents: cdbb422 Author: Milindu Sanoj Kumarage <[email protected]> Authored: Wed Jul 29 09:56:38 2015 +0530 Committer: Imesh Gunaratne <[email protected]> Committed: Tue Oct 13 16:32:46 2015 +0530 ---------------------------------------------------------------------- .../src/main/python/cli/exceptions/AuthenticationError.py | 6 ++++++ 1 file changed, 6 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/stratos/blob/ea42e1ec/components/org.apache.stratos.python.cli/src/main/python/cli/exceptions/AuthenticationError.py ---------------------------------------------------------------------- diff --git a/components/org.apache.stratos.python.cli/src/main/python/cli/exceptions/AuthenticationError.py b/components/org.apache.stratos.python.cli/src/main/python/cli/exceptions/AuthenticationError.py new file mode 100644 index 0000000..d0e1089 --- /dev/null +++ b/components/org.apache.stratos.python.cli/src/main/python/cli/exceptions/AuthenticationError.py @@ -0,0 +1,6 @@ +class AuthenticationError(Exception): + def __init__(self): + pass + + def __str__(self): + return "Authentication error" \ No newline at end of file
