Table of Contents

Class DomainException

Namespace
Savvyio.Domain
Assembly
Savvyio.Core.dll

The exception that is thrown when a domain model is not in a valid state.

public class DomainException : Exception, ISerializable
Inheritance
Object
Exception
DomainException
Implements
ISerializable
Inherited Members
Exception.GetBaseException()
Exception.GetType()
Exception.ToString()
Exception.Data
Exception.HelpLink
Exception.HResult
Exception.InnerException
Exception.Message
Exception.Source
Exception.StackTrace
Exception.TargetSite
Exception.SerializeObjectState

Constructors

DomainException()

Initializes a new instance of the DomainException class.

public DomainException()

DomainException(Exception)

Initializes a new instance of the DomainException class.

public DomainException(Exception innerException)

Parameters

innerException Exception

The exception that is the cause of the current exception.

DomainException(String, Exception)

Initializes a new instance of the DomainException class.

public DomainException(string message, Exception innerException = null)

Parameters

message String

The message that describes the invalid state of the domain model.

innerException Exception

The exception that is the cause of the current exception.