C# Client Library
A C# Client Library for the AnalyzeRe REST API
Loading...
Searching...
No Matches
CommitFailedException.cs
Go to the documentation of this file.
1using System;
2
4{
6 [Serializable]
7 public class CommitFailedException : Exception
8 {
10 public CommitFailedException(string message)
11 : base("The uploaded file failed validation with the following message: " + message)
12 { }
13 }
14}
Exception raised when the commit process fails.
CommitFailedException(string message)
Construct a new UploadCancelledException.