Table of Contents

Class NeedsGuiException

Namespace
ZeroInstall.Commands
Assembly
0install.dll

Indicates that the requested operation requires a GUI but the current process does not have one.

public class NeedsGuiException : NotSupportedException, ISerializable
Inheritance
NeedsGuiException
Implements
Inherited Members

Constructors

NeedsGuiException()

Initializes a new instance of the NotSupportedException class, setting the Message property of the new instance to a system-supplied message that describes the error. This message takes into account the current system culture.

public NeedsGuiException()

NeedsGuiException(string)

Initializes a new instance of the NotSupportedException class with a specified error message.

public NeedsGuiException(string message)

Parameters

message string

A string that describes the error. The content of message is intended to be understood by humans. The caller of this constructor is required to ensure that this string has been localized for the current system culture.

NeedsGuiException(string, Exception)

Initializes a new instance of the NotSupportedException class with a specified error message and a reference to the inner exception that is the cause of this exception.

public NeedsGuiException(string message, Exception inner)

Parameters

message string

The error message that explains the reason for the exception.

inner Exception