Table of Contents

Class InternalServerException

Namespace
DuetAPI
Assembly
DuetAPI.dll

Wrapper around internal server-side exceptions that are reported as part of command responses

public class InternalServerException : Exception, ISerializable
Inheritance
InternalServerException
Implements
Inherited Members

Constructors

InternalServerException(string, string, string)

Wrapper around internal server-side exceptions that are reported as part of command responses

public InternalServerException(string command, string type, string message)

Parameters

command string

Name of the command that failed

type string

Type of the thrown .NET error

message string

Message of the thrown .NET error

See Also

Properties

Command

API command causing the exception

public string Command { get; }

Property Value

string

Type

Type of the thrown exception

public string Type { get; }

Property Value

string

See Also