mirror of
https://github.com/space-wizards/RobustToolbox.git
synced 2026-02-14 19:29:36 +01:00
25 lines
784 B
C#
25 lines
784 B
C#
using System;
|
|
using System.Runtime.Serialization;
|
|
|
|
namespace Robust.Shared.IoC.Exceptions
|
|
{
|
|
/// <summary>
|
|
/// Signifies that a type threw an exception from its constructor while IoC was trying to build it.
|
|
/// </summary>
|
|
[Serializable]
|
|
[Virtual]
|
|
public class ImplementationConstructorException : Exception
|
|
{
|
|
/// <summary>
|
|
/// The <see cref="Type.AssemblyQualifiedName" /> of the type that threw the exception inside its constructor.
|
|
/// </summary>
|
|
public readonly string? typeName;
|
|
|
|
public ImplementationConstructorException(Type type, Exception? inner)
|
|
: base($"{type} threw an exception inside its constructor.", inner)
|
|
{
|
|
typeName = type.AssemblyQualifiedName;
|
|
}
|
|
}
|
|
}
|