/* * 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 { /// /// /// A representation of the DataScaler.InvalidExcitationVoltageException class. /// /// 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) { } } } }