INNER CODE UNIT · C#

CoreException

thangchung/practical-dapr · src/BuildingBlocks/N8T.Domain/CoreException.cs:5

    public class CoreException : Exception
    {
        public CoreException(string message) : base(message)
        {
        }

        public static CoreException Exception(string message)
        {
            return new CoreException(message);
        }

        public static CoreException NullArgument(string arg)
        {
            return new CoreException($"{arg} cannot be null");
        }

        public static CoreException InvalidArgument(string arg)
        {

View source record →

📰 Research Paper
Loading…
⏳ Fetching content…