-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #52 from tpill90/issues34-Dotnet8Upgrade
- Loading branch information
Showing
13 changed files
with
60 additions
and
58 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
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
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
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
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
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 |
---|---|---|
@@ -1,25 +1,18 @@ | ||
namespace EpicPrefill.Models.Exceptions | ||
{ | ||
public class EpicLoginException : Exception | ||
public sealed class EpicLoginException : Exception | ||
{ | ||
protected EpicLoginException(SerializationInfo info, StreamingContext context) : base(info, context) | ||
public EpicLoginException(string message) : base(message) | ||
{ | ||
|
||
} | ||
|
||
public EpicLoginException() | ||
{ | ||
|
||
} | ||
|
||
public EpicLoginException(string message) : base(message) | ||
{ | ||
|
||
} | ||
|
||
public EpicLoginException(string message, Exception inner) : base(message, inner) | ||
public EpicLoginException(string message, Exception innerException) : base(message, innerException) | ||
{ | ||
|
||
} | ||
} | ||
} |
Submodule LancachePrefill.Common
updated
5 files
+2 −2 | dotnet/CliFxConverters.cs | |
+0 −84 | dotnet/Enums/EnumBase.cs | |
+4 −7 | dotnet/Enums/TransferSpeedUnit.cs | |
+5 −0 | dotnet/LancachePrefill.Common.csproj | |
+2 −3 | dotnet/Properties/GlobalUsings.cs |
This file was deleted.
Oops, something went wrong.