public PVException(PVExceptionType type, String desc, Exception innerException)
     : base(desc, innerException)
 {
     PVExceptionType = type;
 }
 public PVException(PVExceptionType type, String desc)
     : base(desc)
 {
     PVExceptionType = type;
 }