npsharp/src/libnpsharp/NPFileException.cs

16 lines
274 B
C#
Raw Normal View History

2014-05-07 14:17:39 +00:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace NPSharp
{
class NpFileException : Exception
{
public NpFileException()
:base(@"Could not fetch file from NP server.")
{
}
}
}