aboutsummaryrefslogtreecommitdiff
path: root/ExamTemplate/Common/ErrorMessages.cs
blob: fa15b8cd2a05a1e875a9b0688521650ecfa8d1db (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
using System;

namespace ExamTemplate.Common
{
	public static class ErrorMessages
	{
		public static string NullObject(Type t)
		{
			return String.Format("{0} cannot be null!", t);
		}
	}
}