Skip to content

Commit 88731bb

Browse files
Merge pull request #137 from KOTlK/inner_exception_getting_lost_fix
Fixed inner exception getting lost, when instantiating type with container.
2 parents b226124 + 8973574 commit 88731bb

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Assets/Reflex/Exceptions/ConstructorInjectorException.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ namespace Reflex.Exceptions
77
{
88
internal sealed class ConstructorInjectorException : Exception
99
{
10-
public ConstructorInjectorException(Type type, Exception exception, MemberParamInfo[] constructorParameters) : base(BuildMessage(type, exception, constructorParameters))
10+
public ConstructorInjectorException(Type type, Exception exception, MemberParamInfo[] constructorParameters) : base(BuildMessage(type, exception, constructorParameters), exception)
1111
{
1212
}
1313

0 commit comments

Comments
 (0)