Browse Source
Merge branch 'master' into feature/fixAdaptiveHistIssue
pull/984/head
Brian Popow
7 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
0 additions and
14 deletions
-
src/ImageSharp/Common/Exceptions/UnknownImageFormatException.cs
|
|
|
@ -1,8 +1,6 @@ |
|
|
|
// Copyright (c) Six Labors and contributors.
|
|
|
|
// Licensed under the Apache License, Version 2.0.
|
|
|
|
|
|
|
|
using System; |
|
|
|
|
|
|
|
namespace SixLabors.ImageSharp |
|
|
|
{ |
|
|
|
/// <summary>
|
|
|
|
@ -20,17 +18,5 @@ namespace SixLabors.ImageSharp |
|
|
|
: base(errorMessage) |
|
|
|
{ |
|
|
|
} |
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Initializes a new instance of the <see cref="UnknownImageFormatException"/> class with a specified
|
|
|
|
/// error message and the exception that is the cause of this exception.
|
|
|
|
/// </summary>
|
|
|
|
/// <param name="errorMessage">The error message that explains the reason for this exception.</param>
|
|
|
|
/// <param name="innerException">The exception that is the cause of the current exception, or a null reference (Nothing in Visual Basic)
|
|
|
|
/// if no inner exception is specified.</param>
|
|
|
|
public UnknownImageFormatException(string errorMessage, Exception innerException) |
|
|
|
: base(errorMessage, innerException) |
|
|
|
{ |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
|