feyris-tan ef86554f9a Import
2025-05-12 22:09:16 +02:00

39 lines
940 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Runtime.Serialization;
using System.Text;
using System.Threading.Tasks;
namespace skyscraper5.Data.PostgreSql
{
[Serializable]
internal class SchemaMissingException : ApplicationException
{
//
// For guidelines regarding the creation of new exception types, see
// http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpgenref/html/cpconerrorraisinghandlingguidelines.asp
// and
// http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dncscol/html/csharp07192001.asp
//
public SchemaMissingException()
{
}
public SchemaMissingException(string message) : base(message)
{
}
public SchemaMissingException(string message, Exception inner) : base(message, inner)
{
}
protected SchemaMissingException(
SerializationInfo info,
StreamingContext context) : base(info, context)
{
}
}
}