mirror of https://github.com/Squidex/squidex.git
6 changed files with 58 additions and 7 deletions
@ -0,0 +1,34 @@ |
|||
// ==========================================================================
|
|||
// Squidex Headless CMS
|
|||
// ==========================================================================
|
|||
// Copyright (c) Squidex UG (haftungsbeschraenkt)
|
|||
// All rights reserved. Licensed under the MIT license.
|
|||
// ==========================================================================
|
|||
|
|||
using System; |
|||
|
|||
namespace Squidex.Infrastructure |
|||
{ |
|||
[Serializable] |
|||
public class UniqueConstraintException : Exception |
|||
{ |
|||
public UniqueConstraintException() |
|||
{ |
|||
} |
|||
|
|||
public UniqueConstraintException(string message) |
|||
: base(message) |
|||
{ |
|||
} |
|||
|
|||
public UniqueConstraintException(string message, Exception inner) |
|||
: base(message, inner) |
|||
{ |
|||
} |
|||
|
|||
protected UniqueConstraintException(SerializationInfo info, StreamingContext context) |
|||
: base(info, context) |
|||
{ |
|||
} |
|||
} |
|||
} |
|||
Loading…
Reference in new issue