aboutsummaryrefslogtreecommitdiff
path: root/src/Common/DevHive.Common/Constants/ErrorMessages.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/Common/DevHive.Common/Constants/ErrorMessages.cs')
-rw-r--r--src/Common/DevHive.Common/Constants/ErrorMessages.cs16
1 files changed, 16 insertions, 0 deletions
diff --git a/src/Common/DevHive.Common/Constants/ErrorMessages.cs b/src/Common/DevHive.Common/Constants/ErrorMessages.cs
new file mode 100644
index 0000000..30ca544
--- /dev/null
+++ b/src/Common/DevHive.Common/Constants/ErrorMessages.cs
@@ -0,0 +1,16 @@
+namespace DevHive.Common.Constants
+{
+ public static class ErrorMessages
+ {
+ public const string InvalidData = "Invalid {0}!";
+ public const string IncorrectData = "Incorrect {0}!";
+ public const string DoesNotExist = "{0} does not exist!";
+ public const string AlreadyExists = "{0} already exists!";
+
+ public const string CannotAdd = "Could not add {0}!";
+ public const string CannotCreate = "Could not create {0}!";
+ public const string CannotDelete = "Could not delete {0}!";
+ public const string CannotUpload = "Could not upload {0}!";
+ public const string CannotEdit = "Could not edit {0}!";
+ }
+}