init
This commit is contained in:
@@ -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) { }
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user