Browse Source
git-svn-id: svn://svn.sharpdevelop.net/sharpdevelop/branches/3.0@5755 1ccf3a8d-04fe-1044-b7c0-cef0b8235c61pull/1/head
12 changed files with 60 additions and 168 deletions
@ -1,48 +0,0 @@
@@ -1,48 +0,0 @@
|
||||
/* |
||||
* Erstellt mit SharpDevelop. |
||||
* Benutzer: Peter |
||||
* Datum: 22.08.2009 |
||||
* Zeit: 20:01 |
||||
* |
||||
* Sie können diese Vorlage unter Extras > Optionen > Codeerstellung > Standardheader ändern. |
||||
*/ |
||||
using System; |
||||
using System.Runtime.Serialization; |
||||
using System.Security.Permissions; |
||||
|
||||
namespace ICSharpCode.Reports.Core |
||||
{ |
||||
/// <summary>
|
||||
/// Description of AsyncPageBuilderException.
|
||||
/// </summary>
|
||||
public class AsyncPageBuilderException:Exception |
||||
{ |
||||
public AsyncPageBuilderException():base () |
||||
{ |
||||
} |
||||
|
||||
public AsyncPageBuilderException(string errorMessage) :base (errorMessage) |
||||
{ |
||||
} |
||||
|
||||
public AsyncPageBuilderException(string errorMessage, |
||||
Exception exception):base (errorMessage,exception) |
||||
{ |
||||
} |
||||
|
||||
|
||||
protected AsyncPageBuilderException(SerializationInfo info, |
||||
StreamingContext context) : base(info, context) |
||||
{ |
||||
// Implement type-specific serialization constructor logic.
|
||||
} |
||||
|
||||
|
||||
[SecurityPermissionAttribute(SecurityAction.Demand, |
||||
SerializationFormatter = true)] |
||||
public override void GetObjectData(SerializationInfo info, StreamingContext context) |
||||
{ |
||||
base.GetObjectData(info, context); |
||||
} |
||||
} |
||||
} |
Loading…
Reference in new issue