Skip to content

Commit c3f962c

Browse files
committed
Added exception files (will eventually replace error enum).
1 parent ea9f87a commit c3f962c

6 files changed

Lines changed: 65 additions & 0 deletions

File tree

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
using System;
2+
using System.Collections.Generic;
3+
using System.Linq;
4+
using System.Text;
5+
using System.Threading.Tasks;
6+
7+
namespace CodeIsle.Exceptions
8+
{
9+
class Ips16MBException
10+
{
11+
}
12+
}
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
using System;
2+
using System.Collections.Generic;
3+
using System.Linq;
4+
using System.Text;
5+
using System.Threading.Tasks;
6+
7+
namespace CodeIsle.Exceptions
8+
{
9+
class IpsIdenticalException
10+
{
11+
}
12+
}
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
using System;
2+
using System.Collections.Generic;
3+
using System.Linq;
4+
using System.Text;
5+
using System.Threading.Tasks;
6+
7+
namespace CodeIsle.Exceptions
8+
{
9+
class IpsInvalidException
10+
{
11+
}
12+
}
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
using System;
2+
using System.Collections.Generic;
3+
using System.Linq;
4+
using System.Text;
5+
using System.Threading.Tasks;
6+
7+
namespace CodeIsle.Exceptions
8+
{
9+
class IpsNotThisException
10+
{
11+
}
12+
}
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
using System;
2+
using System.Collections.Generic;
3+
using System.Linq;
4+
using System.Text;
5+
using System.Threading.Tasks;
6+
7+
namespace CodeIsle.Exceptions
8+
{
9+
class IpsScrambledException
10+
{
11+
}
12+
}

LibIPS.NET/LibIPS.NET.csproj

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,11 @@
3939
<Reference Include="System.Xml" />
4040
</ItemGroup>
4141
<ItemGroup>
42+
<Compile Include="Exceptions\Ips16MBException.cs" />
43+
<Compile Include="Exceptions\IpsIdenticalException.cs" />
44+
<Compile Include="Exceptions\IpsInvalidException.cs" />
45+
<Compile Include="Exceptions\IpsNotThisException.cs" />
46+
<Compile Include="Exceptions\IpsScrambledException.cs" />
4247
<Compile Include="LibIpsNet.cs" />
4348
<Compile Include="Properties\AssemblyInfo.cs" />
4449
</ItemGroup>

0 commit comments

Comments
 (0)