Make NP file exception class public

feature-npv2
Icedream 2014-05-31 13:27:06 +02:00
parent b61b400227
commit 94a7d20cfc
1 changed files with 1 additions and 1 deletions

View File

@ -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")