C# Client Library
A C# Client Library for the AnalyzeRe REST API
Loading...
Searching...
No Matches
UploadInProgressException.cs
Go to the documentation of this file.
1using System;
2
4{
7 [Serializable]
8 public class UploadInProgressException : Exception
9 {
12 public UploadInProgressException(string message = null)
13 : base(message ?? "Could not upload to this endpoint, a large upload is already " +
14 "in progress. To attempt to resume or cancel the existing upload session, " +
15 "set the 'handle_existing_upload_strategy' parameter appropriately.")
16 { }
17 }
18}
Indicates that a large upload could not take place because an existing large upload session is alread...
UploadInProgressException(string message=null)
Constructs a new UploadInProgressException with a message.