mirror of https://github.com/icedream/npsharp.git
16 lines
274 B
C#
16 lines
274 B
C#
|
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.")
|
|||
|
{
|
|||
|
}
|
|||
|
}
|
|||
|
}
|