From: Bruno da Silva Belo Date: Mon, 28 Oct 2019 14:43:56 +0000 (-0300) Subject: csharp: Add missing exception ctor from Errors.cs. X-Git-Tag: submit/tizen/20191111.023126~180 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=744ecd3f0484b7c6d723f29f3754e35bbeb03c61;p=platform%2Fupstream%2Fefl.git 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 --- 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 {