Languages
Multilanguage hinzugefügt muss noch weiter umgebaut werden Bei fehlerhafte projektnummern, wird die zeile rot dargestellt
This commit is contained in:
28
SanShared/Exceptions/LangNotFoundException.cs
Normal file
28
SanShared/Exceptions/LangNotFoundException.cs
Normal 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 LangNotFoundException : Exception
|
||||
{
|
||||
public LangNotFoundException()
|
||||
{
|
||||
}
|
||||
|
||||
public LangNotFoundException(string message) : base(message)
|
||||
{
|
||||
}
|
||||
|
||||
public LangNotFoundException(string message, Exception innerException) : base(message, innerException)
|
||||
{
|
||||
}
|
||||
|
||||
protected LangNotFoundException(SerializationInfo info, StreamingContext context) : base(info, context)
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user