AcUtils
A high performance abstraction layer for AccuRev
AcUtilsException.cs
Go to the documentation of this file.
1 
16 using System;
17 using System.Runtime.Serialization;
18 
19 namespace AcUtils
20 {
33  [Serializable]
34  public sealed class AcUtilsException : System.Exception
35  {
36  public AcUtilsException() : base()
37  { }
38 
39  public AcUtilsException(string command) : base(command)
40  { }
41 
42  public AcUtilsException(string command, Exception innerException)
43  : base(command, innerException)
44  { }
45 
46  public AcUtilsException(SerializationInfo serializationInfo, StreamingContext context)
47  : base(serializationInfo, context)
48  { }
49 
50  public override string Message
51  {
52  get { return base.Message; }
53  }
54  }
55 }
Exception thrown when an AccuRev command fails. The AccuRev program return value is zero (0) on succe...