Show / Hide Table of Contents

Class VeldridException

Represents errors that occur in the Veldrid library.

Inheritance
System.Object
System.Exception
VeldridException
Implements
System.Runtime.Serialization.ISerializable
System.Runtime.InteropServices._Exception
Inherited Members
System.Exception.GetBaseException()
System.Exception.ToString()
System.Exception.GetObjectData(System.Runtime.Serialization.SerializationInfo, System.Runtime.Serialization.StreamingContext)
System.Exception.GetType()
System.Exception.Message
System.Exception.Data
System.Exception.InnerException
System.Exception.TargetSite
System.Exception.StackTrace
System.Exception.HelpLink
System.Exception.Source
System.Exception.HResult
System.Exception.SerializeObjectState
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.MemberwiseClone()
Namespace: Veldrid
Assembly: cs.temp.dll.dll
Syntax
public class VeldridException : Exception, ISerializable, _Exception

Constructors

VeldridException()

Constructs a new VeldridException.

Declaration
public VeldridException()

VeldridException(String)

Constructs a new Veldridexception with the given message.

Declaration
public VeldridException(string message)
Parameters
Type Name Description
System.String message

The exception message.

VeldridException(String, Exception)

Constructs a new Veldridexception with the given message and inner exception.

Declaration
public VeldridException(string message, Exception innerException)
Parameters
Type Name Description
System.String message

The exception message.

System.Exception innerException

The inner exception.

Implements

System.Runtime.Serialization.ISerializable
System.Runtime.InteropServices._Exception
Back to top