From b1917f617384be2f1f6d8aba5d278d2665f66672 Mon Sep 17 00:00:00 2001 From: ImMin5 Date: Fri, 20 Oct 2023 20:24:45 +0900 Subject: [PATCH] feat: add error_smtp.py (#58) Signed-off-by: ImMin5 --- src/spaceone/identity/error/error_smtp.py | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 src/spaceone/identity/error/error_smtp.py diff --git a/src/spaceone/identity/error/error_smtp.py b/src/spaceone/identity/error/error_smtp.py new file mode 100644 index 00000000..cff39675 --- /dev/null +++ b/src/spaceone/identity/error/error_smtp.py @@ -0,0 +1,4 @@ +from spaceone.core.error import * + +class ERROR_SMTP_CONNECTION_FAILED(ERROR_UNKNOWN): + _message = 'SMTP server connection failed. Please contact the administrator.' \ No newline at end of file