将Feature/XP.Common和Feature/XP.Hardware分支合并至Develop/XP.forHardwareAndCommon,完善XPapp注册和相关硬件类库通用类库功能。
This commit is contained in:
@@ -0,0 +1,14 @@
|
||||
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) { }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user