14 lines
323 B
C#
14 lines
323 B
C#
using System;
|
|
|
|
namespace Kreta.Framework
|
|
{
|
|
[Serializable]
|
|
public class ArchivBelepesException : ServerException
|
|
{
|
|
[Obsolete("Ezt a konstruktort ne használd!")]
|
|
public ArchivBelepesException() { }
|
|
|
|
public ArchivBelepesException(string message)
|
|
: base(message) { }
|
|
}
|
|
}
|