123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113 |
- using System;
- #if NET_FULL
- using System.Runtime.Serialization;
- #endif
- namespace S7.Net
- {
- public class WrongNumberOfBytesException : Exception
- {
- public WrongNumberOfBytesException() : base()
- {
- }
- public WrongNumberOfBytesException(string message) : base(message)
- {
- }
- public WrongNumberOfBytesException(string message, Exception innerException) : base(message, innerException)
- {
- }
- #if NET_FULL
- protected WrongNumberOfBytesException(SerializationInfo info, StreamingContext context) : base(info, context)
- {
- }
- #endif
- }
- public class InvalidAddressException : Exception
- {
- public InvalidAddressException() : base ()
- {
- }
- public InvalidAddressException(string message) : base(message)
- {
- }
- public InvalidAddressException(string message, Exception innerException) : base(message, innerException)
- {
- }
- #if NET_FULL
- protected InvalidAddressException(SerializationInfo info, StreamingContext context) : base(info, context)
- {
- }
- #endif
- }
- public class InvalidVariableTypeException : Exception
- {
- public InvalidVariableTypeException() : base()
- {
- }
- public InvalidVariableTypeException(string message) : base(message)
- {
- }
- public InvalidVariableTypeException(string message, Exception innerException) : base(message, innerException)
- {
- }
- #if NET_FULL
- protected InvalidVariableTypeException(SerializationInfo info, StreamingContext context) : base(info, context)
- {
- }
- #endif
- }
- public class TPKTInvalidException : Exception
- {
- public TPKTInvalidException() : base()
- {
- }
- public TPKTInvalidException(string message) : base(message)
- {
- }
- public TPKTInvalidException(string message, Exception innerException) : base(message, innerException)
- {
- }
- #if NET_FULL
- protected TPKTInvalidException(SerializationInfo info, StreamingContext context) : base(info, context)
- {
- }
- #endif
- }
- public class TPDUInvalidException : Exception
- {
- public TPDUInvalidException() : base()
- {
- }
- public TPDUInvalidException(string message) : base(message)
- {
- }
- public TPDUInvalidException(string message, Exception innerException) : base(message, innerException)
- {
- }
- #if NET_FULL
- protected TPDUInvalidException(SerializationInfo info, StreamingContext context) : base(info, context)
- {
- }
- #endif
- }
- }
|