-
-
Notifications
You must be signed in to change notification settings - Fork 38
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Typo in LoadHtmlDocumentAsync * Improved logging on webscraper * Further improved error reporting * Added exceptions for webscraper * Refactored webscraper * Updated project version
- Loading branch information
Showing
6 changed files
with
166 additions
and
66 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
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
24 changes: 24 additions & 0 deletions
24
src/CyberdropDownloader.Core/Exceptions/NullAlbumFilesException.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,24 @@ | ||
using System; | ||
using System.Runtime.Serialization; | ||
|
||
namespace CyberdropDownloader.Core.Exceptions | ||
{ | ||
public class NullAlbumFilesException : Exception | ||
{ | ||
public NullAlbumFilesException() | ||
{ | ||
} | ||
|
||
public NullAlbumFilesException(string message) : base(message) | ||
{ | ||
} | ||
|
||
public NullAlbumFilesException(string message, Exception innerException) : base(message, innerException) | ||
{ | ||
} | ||
|
||
protected NullAlbumFilesException(SerializationInfo info, StreamingContext context) : base(info, context) | ||
{ | ||
} | ||
} | ||
} |
24 changes: 24 additions & 0 deletions
24
src/CyberdropDownloader.Core/Exceptions/NullAlbumSizeException.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,24 @@ | ||
using System; | ||
using System.Runtime.Serialization; | ||
|
||
namespace CyberdropDownloader.Core.Exceptions | ||
{ | ||
public class NullAlbumSizeException : Exception | ||
{ | ||
public NullAlbumSizeException() | ||
{ | ||
} | ||
|
||
public NullAlbumSizeException(string message) : base(message) | ||
{ | ||
} | ||
|
||
public NullAlbumSizeException(string message, Exception innerException) : base(message, innerException) | ||
{ | ||
} | ||
|
||
protected NullAlbumSizeException(SerializationInfo info, StreamingContext context) : base(info, context) | ||
{ | ||
} | ||
} | ||
} |
24 changes: 24 additions & 0 deletions
24
src/CyberdropDownloader.Core/Exceptions/NullAlbumTitleException.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,24 @@ | ||
using System; | ||
using System.Runtime.Serialization; | ||
|
||
namespace CyberdropDownloader.Core.Exceptions | ||
{ | ||
public class NullAlbumTitleException : Exception | ||
{ | ||
public NullAlbumTitleException() | ||
{ | ||
} | ||
|
||
public NullAlbumTitleException(string message) : base(message) | ||
{ | ||
} | ||
|
||
public NullAlbumTitleException(string message, Exception innerException) : base(message, innerException) | ||
{ | ||
} | ||
|
||
protected NullAlbumTitleException(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