18 lines
415 B
C#
18 lines
415 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace MyCustomComponents.Extensions
|
|
{
|
|
public class PropertyNullException : Exception
|
|
{
|
|
public PropertyNullException() { }
|
|
|
|
public PropertyNullException(string message) : base(message) { }
|
|
|
|
public PropertyNullException(string message, Exception inner) : base(message, inner) { }
|
|
}
|
|
}
|