Files
QRCodeLib/exception/SymbolNotFoundException.cs
2019-05-04 06:53:50 +09:00

23 lines
359 B
C#

using System;
namespace ThoughtWorks.QRCode.ExceptionHandler
{
[Serializable]
public class SymbolNotFoundException:System.ArgumentException
{
internal String message = null;
public override String Message
{
get
{
return message;
}
}
public SymbolNotFoundException(String message)
{
this.message = message;
}
}
}