using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace XP.Hardware.Plc.Exceptions { public class PlcException : Exception { public PlcException(string message) : base(message) { } public PlcException(string message, Exception innerException) : base(message, innerException) { } } }