mirror of
https://github.com/Lendaia/oe-alga-feladatok.git
synced 2026-04-23 04:16:32 +01:00
23 lines
537 B
C#
23 lines
537 B
C#
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)
|
|
{
|
|
|
|
}
|
|
}
|
|
}
|