aboutsummaryrefslogtreecommitdiff
path: root/src/Common/DevHive.Common/Constants/ErrorMessages.cs
blob: 30ca5447a23d7fd98406ef856fa7562fd4cade62 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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}!";
	}
}