SECI  1
 All Classes Namespaces Files Functions Variables Enumerations Enumerator Properties Events
LabViewException.cs
Go to the documentation of this file.
1 using System;
2 using System.Collections.Generic;
3 using System.Text;
4 
5 namespace Seci.LabView
6 {
10  public class LabViewException : Exception
11  {
16  public LabViewException(String message)
17  : base(message)
18  {
19  }
20  }
21 
25  public class GetControlsException : Exception
26  {
31  public GetControlsException(String message)
32  : base(message)
33  {
34  }
35  }
36 }
LabViewException(String message)
Recommended constructor
A simple custom exception used for LabVIEW exceptions
A simple custom exception used for a LabVIEW control cannot be read
GetControlsException(String message)
Recommended constructor