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
This commit is contained in:
Bruno da Silva Belo 2019-10-28 11:43:56 -03:00 committed by Mike Blumenkrantz
parent 1998e5afb0
commit 49b557664d
1 changed files with 2 additions and 0 deletions

View File

@ -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 {