From 94a7d20cfccea581812aeaf38df3a0cdc4e7407f Mon Sep 17 00:00:00 2001 From: icedream Date: Sat, 31 May 2014 13:27:06 +0200 Subject: [PATCH] Make NP file exception class public --- src/client/NP/NPFileException.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/client/NP/NPFileException.cs b/src/client/NP/NPFileException.cs index f19ce75..c8c66f9 100644 --- a/src/client/NP/NPFileException.cs +++ b/src/client/NP/NPFileException.cs @@ -2,7 +2,7 @@ namespace NPSharp.NP { - internal class NpFileException : Exception + public class NpFileException : Exception { internal NpFileException(int error) : base(error == 1 ? @"File not found on NP server" : @"Internal error on NP server")