Akka.Interfaced.ResponsiveException.ResponsiveException C# (CSharp) Method

ResponsiveException() public method

public ResponsiveException ( Exception innerException ) : System
innerException System.Exception
return System
        public ResponsiveException(Exception innerException)
            : base(null, innerException)
        {
            if (innerException == null)
            {
                throw new ArgumentNullException(nameof(InnerException));
            }
        }
    }
ResponsiveException