30 lines
1.0 KiB
C#
30 lines
1.0 KiB
C#
|
|
/*
|
|||
|
|
* DataScaler.InvalidExcitationVoltageException.cs
|
|||
|
|
*
|
|||
|
|
* Copyright © 2009
|
|||
|
|
* Diversified Technical Systems, Inc.
|
|||
|
|
* All Rights Reserved
|
|||
|
|
*/
|
|||
|
|
|
|||
|
|
namespace DTS.Common.DAS.Concepts
|
|||
|
|
{
|
|||
|
|
// *** see DTS.Slice.Control.DataScaler.cs ***
|
|||
|
|
public partial class DataScaler
|
|||
|
|
{ ///
|
|||
|
|
/// <summary>
|
|||
|
|
/// A representation of the DataScaler.InvalidExcitationVoltageException class.
|
|||
|
|
/// </summary>
|
|||
|
|
///
|
|||
|
|
public class InvalidExcitationVoltageException : Exception
|
|||
|
|
{
|
|||
|
|
public InvalidExcitationVoltageException() { }
|
|||
|
|
public InvalidExcitationVoltageException(string msg) : base(msg) { }
|
|||
|
|
public InvalidExcitationVoltageException(string msg, System.Exception innerEx) : base(msg, innerEx) { }
|
|||
|
|
protected InvalidExcitationVoltageException(
|
|||
|
|
System.Runtime.Serialization.SerializationInfo info,
|
|||
|
|
System.Runtime.Serialization.StreamingContext context)
|
|||
|
|
: base(info, context) { }
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|