123456789101112131415161718192021222324 |
- using System;
- using System.Collections.Generic;
- using System.Globalization;
- using System.Linq;
- using System.Threading.Tasks;
-
- namespace UnivateProperties_API.Helpers
- {
- public class AppException : Exception
- {
- public AppException() : base()
- {
- }
-
- public AppException(string message) : base(message)
- {
- }
-
- public AppException(string message, params object[] args)
- : base(String.Format(CultureInfo.CurrentCulture, message, args))
- {
- }
- }
- }
|