24 lines
594 B
C#
Executable file
24 lines
594 B
C#
Executable file
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
/*
|
|
* Application Description Framework
|
|
* DataRangeException.cs
|
|
*
|
|
* (c) 2007 Cygnet Solutions Ltd
|
|
*
|
|
* $Author: af $
|
|
* $Revision: 1.1 $
|
|
*/
|
|
|
|
namespace ADL.Exceptions {
|
|
/// <summary>
|
|
/// An exception to be thrown if an attempt is made to set a scalar property with a
|
|
/// defined range to a value which is outside that range
|
|
/// </summary>
|
|
public class DataRangeException : DataSuitabilityException {
|
|
public DataRangeException(String message) : base(message) {}
|
|
}
|
|
}
|