diff options
Diffstat (limited to 'ExamTemplate/Common/ErrorMessages.cs')
| -rw-r--r-- | ExamTemplate/Common/ErrorMessages.cs | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/ExamTemplate/Common/ErrorMessages.cs b/ExamTemplate/Common/ErrorMessages.cs new file mode 100644 index 0000000..fa15b8c --- /dev/null +++ b/ExamTemplate/Common/ErrorMessages.cs @@ -0,0 +1,12 @@ +using System; + +namespace ExamTemplate.Common +{ + public static class ErrorMessages + { + public static string NullObject(Type t) + { + return String.Format("{0} cannot be null!", t); + } + } +} |
