This commit is contained in:
2026-04-17 14:55:32 -04:00
commit bc3ac1d4c9
18017 changed files with 4371742 additions and 0 deletions

View File

@@ -0,0 +1,29 @@
/*
* 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) { }
}
}
}