コード例 #1
0
 public JSVsaException(JSVsaError error, string message, Exception innerException) : base(message, innerException)
 {
     base.HResult = (int)error;
 }
コード例 #2
0
 public JSVsaException(JSVsaError error) : base(string.Empty, (int)error)
 {
 }
コード例 #3
0
 public JSVsaException(JSVsaError error, string message) : base(message, (int)error)
 {
 }
コード例 #4
0
 protected JSVsaException Error(JSVsaError vsaErrorNumber)
 {
     return(new JSVsaException(vsaErrorNumber));
 }
コード例 #5
0
 protected JSVsaException Error(JSVsaError vsaErrorNumber)
 {
     return new JSVsaException(vsaErrorNumber);
 }
コード例 #6
0
 public JSVsaException(JSVsaError error, string message, Exception innerException) : base(message, innerException)
 {
     base.HResult = (int) error;
 }
コード例 #7
0
 public JSVsaException(JSVsaError error, string message) : base(message, (int) error)
 {
 }
コード例 #8
0
 public JSVsaException(JSVsaError error) : base(string.Empty, (int) error)
 {
 }