mirror of https://github.com/Squidex/squidex.git
12 changed files with 115 additions and 2 deletions
@ -0,0 +1,38 @@ |
|||||
|
// ==========================================================================
|
||||
|
// OrleansException.cs
|
||||
|
// Squidex Headless CMS
|
||||
|
// ==========================================================================
|
||||
|
// Copyright (c) Squidex Group
|
||||
|
// All rights reserved.
|
||||
|
// ==========================================================================
|
||||
|
|
||||
|
using System; |
||||
|
using System.Runtime.Serialization; |
||||
|
|
||||
|
namespace Squidex.Infrastructure.Orleans |
||||
|
{ |
||||
|
[Serializable] |
||||
|
public class OrleansException : Exception |
||||
|
{ |
||||
|
public OrleansException() |
||||
|
{ |
||||
|
} |
||||
|
|
||||
|
public OrleansException(string message) |
||||
|
: base(message) |
||||
|
{ |
||||
|
} |
||||
|
|
||||
|
public OrleansException(string message, Exception inner) |
||||
|
: base(message, inner) |
||||
|
{ |
||||
|
} |
||||
|
|
||||
|
protected OrleansException( |
||||
|
SerializationInfo info, |
||||
|
StreamingContext context) |
||||
|
: base(info, context) |
||||
|
{ |
||||
|
} |
||||
|
} |
||||
|
} |
||||
Loading…
Reference in new issue