Example #1
0
 public PortMidiException(PmError errorType, string message, Exception innerException)
     : base(message, innerException)
 {
     error_type = errorType;
 }
Example #2
0
 public static extern string Pm_GetErrorText(PmError errnum);
Example #3
0
 public PortMidiException(PmError errorType, string message)
     : this(errorType, message, null)
 {
 }