Skip to content

Commit

Permalink
These exceptions should have been public.
Browse files Browse the repository at this point in the history
  • Loading branch information
wasabii committed Oct 29, 2024
1 parent 0e3adce commit 61ad3b2
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/IKVM.ByteCode/InvalidClassException.cs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
/// <summary>
/// Describes an attempt to parse an unsupported class file.
/// </summary>
internal class InvalidClassException :
public class InvalidClassException :
ByteCodeException
{

Expand Down
2 changes: 1 addition & 1 deletion src/IKVM.ByteCode/InvalidClassMagicException.cs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
/// <summary>
/// Describes an attempt to parse an unsupported class magic value.
/// </summary>
internal sealed class InvalidClassMagicException :
public sealed class InvalidClassMagicException :
InvalidClassException
{

Expand Down
2 changes: 1 addition & 1 deletion src/IKVM.ByteCode/UnsupportedClassVersionException.cs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
/// <summary>
/// Describes an attempt to parse an unsupported class file version.
/// </summary>
internal sealed class UnsupportedClassVersionException :
public sealed class UnsupportedClassVersionException :
InvalidClassException
{

Expand Down

0 comments on commit 61ad3b2

Please sign in to comment.