This commit is contained in:
Lendaia Mirai
2025-10-16 14:48:13 +02:00
parent b8f1853b1a
commit 793b379c48
57 changed files with 5491 additions and 0 deletions

View File

@@ -0,0 +1,22 @@
namespace OE.ALGA.Engine
{
public class UtkozesKivetel : Exception
{
public TerkepElem Forras { get; set; }
public TerkepElem Utkozes { get; set; }
public UtkozesKivetel(TerkepElem forras, TerkepElem utkozes)
{
this.Forras = forras;
this.Utkozes = utkozes;
}
}
public class NemLehetIdeLepniKivetel : UtkozesKivetel
{
public NemLehetIdeLepniKivetel(TerkepElem forras, TerkepElem utkozes) : base(forras, utkozes)
{
}
}
}