init commit
This commit is contained in:
@@ -0,0 +1,20 @@
|
||||
using System;
|
||||
|
||||
namespace AForge.Imaging;
|
||||
|
||||
public class InvalidImagePropertiesException : ArgumentException
|
||||
{
|
||||
public InvalidImagePropertiesException()
|
||||
{
|
||||
}
|
||||
|
||||
public InvalidImagePropertiesException(string message)
|
||||
: base(message)
|
||||
{
|
||||
}
|
||||
|
||||
public InvalidImagePropertiesException(string message, string paramName)
|
||||
: base(message, paramName)
|
||||
{
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user