From 744ecd3f0484b7c6d723f29f3754e35bbeb03c61 Mon Sep 17 00:00:00 2001 From: Bruno da Silva Belo Date: Mon, 28 Oct 2019 11:43:56 -0300 Subject: [PATCH] csharp: Add missing exception ctor from Errors.cs. Summary: ref T8392 Reviewers: lauromoura, felipealmeida, segfaultxavi, YOhoho Reviewed By: lauromoura Subscribers: cedric, #reviewers, #committers Tags: #efl Maniphest Tasks: T8392 Differential Revision: https://phab.enlightenment.org/D10455 --- src/tests/efl_mono/Errors.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/tests/efl_mono/Errors.cs b/src/tests/efl_mono/Errors.cs index ee22ff9..94156e9 100644 --- a/src/tests/efl_mono/Errors.cs +++ b/src/tests/efl_mono/Errors.cs @@ -37,7 +37,9 @@ class TestEolianError { public class CustomException : Exception { + public CustomException() {} public CustomException(string msg): base(msg) {} + public CustomException(string msg, Exception inner) : base(msg, inner) {} } class Overrider : Dummy.TestObject { -- 2.7.4