API
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

AppException.cs 531B

123456789101112131415161718192021222324
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Globalization;
  4. using System.Linq;
  5. using System.Threading.Tasks;
  6. namespace UnivateProperties_API.Helpers
  7. {
  8. public class AppException : Exception
  9. {
  10. public AppException() : base()
  11. {
  12. }
  13. public AppException(string message) : base(message)
  14. {
  15. }
  16. public AppException(string message, params object[] args)
  17. : base(String.Format(CultureInfo.CurrentCulture, message, args))
  18. {
  19. }
  20. }
  21. }