Still Hsu 7 years ago
parent
commit
1584aa31f1
No known key found for this signature in database GPG Key ID: 8601A145FDA95209
3 changed files with 3 additions and 3 deletions
  1. +1
    -1
      src/Discord.Net.Commands/CommandException.cs
  2. +1
    -1
      src/Discord.Net.Core/Net/HttpException.cs
  3. +1
    -1
      src/Discord.Net.Core/Net/WebSocketClosedException.cs

+ 1
- 1
src/Discord.Net.Commands/CommandException.cs View File

@@ -3,7 +3,7 @@ using System;
namespace Discord.Commands
{
/// <summary>
/// Describes an exception that occurred during a command execution.
/// The exception that is thrown if another exception occurs during a command execution.
/// </summary>
public class CommandException : Exception
{


+ 1
- 1
src/Discord.Net.Core/Net/HttpException.cs View File

@@ -4,7 +4,7 @@ using System.Net;
namespace Discord.Net
{
/// <summary>
/// Describes an exception that occurred during the processing of Discord HTTP requests.
/// The exception that is thrown if an error occurs while processing an Discord HTTP request.
/// </summary>
public class HttpException : Exception
{


+ 1
- 1
src/Discord.Net.Core/Net/WebSocketClosedException.cs View File

@@ -2,7 +2,7 @@ using System;
namespace Discord.Net
{
/// <summary>
/// Describes an exception that causes the WebSocket to close during a session.
/// The exception that is thrown when the WebSocket session is closed by Discord.
/// </summary>
public class WebSocketClosedException : Exception
{


Loading…
Cancel
Save