-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Improve error handling in case pull request does not exist
- Loading branch information
1 parent
808b344
commit 55368f1
Showing
3 changed files
with
67 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
52 changes: 52 additions & 0 deletions
52
src/Cake.Tfs/PullRequest/TfsPullRequestNotFoundException.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
namespace Cake.Tfs.PullRequest | ||
{ | ||
using System; | ||
using System.Runtime.Serialization; | ||
|
||
/// <summary> | ||
/// Represents an error if a pull request was not found. | ||
/// </summary> | ||
[Serializable] | ||
public class TfsPullRequestNotFoundException : TfsException | ||
{ | ||
/// <summary> | ||
/// Initializes a new instance of the <see cref="TfsPullRequestNotFoundException"/> class. | ||
/// </summary> | ||
public TfsPullRequestNotFoundException() | ||
{ | ||
} | ||
|
||
/// <summary> | ||
/// Initializes a new instance of the <see cref="TfsPullRequestNotFoundException"/> class with a specified error message. | ||
/// </summary> | ||
/// <param name="message">The message that describes the error. </param> | ||
public TfsPullRequestNotFoundException(string message) | ||
: base(message) | ||
{ | ||
} | ||
|
||
/// <summary> | ||
/// Initializes a new instance of the <see cref="TfsPullRequestNotFoundException"/> class with a specified error message | ||
/// and a reference to the inner exception that is the cause of this exception. | ||
/// </summary> | ||
/// <param name="message">The error message that explains the reason for the exception.</param> | ||
/// <param name="innerException">The exception that is the cause of the current exception, or a null | ||
/// reference if no inner exception is specified.</param> | ||
public TfsPullRequestNotFoundException(string message, Exception innerException) | ||
: base(message, innerException) | ||
{ | ||
} | ||
|
||
/// <summary> | ||
/// Initializes a new instance of the <see cref="TfsPullRequestNotFoundException"/> class with serialized data. | ||
/// </summary> | ||
/// <param name="info">The <see cref="SerializationInfo"/> that holds the serialized object data about | ||
/// the exception being thrown.</param> | ||
/// <param name="context">The <see cref="StreamingContext"/> that contains contextual information about | ||
/// the source or destination. </param> | ||
protected TfsPullRequestNotFoundException(SerializationInfo info, StreamingContext context) | ||
: base(info, context) | ||
{ | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters