Syncfusion geupdated

This commit is contained in:
Husky
2019-10-10 16:43:18 +02:00
parent 30f0956d21
commit c2bbeb7e50
11 changed files with 138 additions and 93 deletions

View File

@@ -0,0 +1,28 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Runtime.Serialization;
using System.Text;
using System.Threading.Tasks;
namespace SanShared.Exceptions
{
public class CSVImportException : Exception
{
public CSVImportException()
{
}
public CSVImportException(string message) : base(message)
{
}
public CSVImportException(string message, Exception innerException) : base(message, innerException)
{
}
protected CSVImportException(SerializationInfo info, StreamingContext context) : base(info, context)
{
}
}
}

View File

@@ -21,7 +21,8 @@
<DefineConstants>DEBUG;TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<DocumentationFile>bin\Debug\SanShared.xml</DocumentationFile>
<DocumentationFile>
</DocumentationFile>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType>pdbonly</DebugType>
@@ -43,6 +44,7 @@
</ItemGroup>
<ItemGroup>
<Compile Include="BilderObject.cs" />
<Compile Include="Exceptions\CSVImportException.cs" />
<Compile Include="Exceptions\DataBaseVersionMismatchException.cs" />
<Compile Include="Exceptions\LangNotFoundException.cs" />
<Compile Include="IAuftraggeber.cs" />