initial commit
This commit is contained in:
23
exception/InvalidDataBlockException.cs
Normal file
23
exception/InvalidDataBlockException.cs
Normal file
@@ -0,0 +1,23 @@
|
||||
using System;
|
||||
namespace ThoughtWorks.QRCode.ExceptionHandler
|
||||
{
|
||||
[Serializable]
|
||||
public class InvalidDataBlockException:System.ArgumentException
|
||||
{
|
||||
internal String message = null;
|
||||
|
||||
public override String Message
|
||||
{
|
||||
get
|
||||
{
|
||||
return message;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
public InvalidDataBlockException(String message)
|
||||
{
|
||||
this.message = message;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user