Browse Source
git-svn-id: svn://svn.sharpdevelop.net/sharpdevelop/trunk@463 1ccf3a8d-04fe-1044-b7c0-cef0b8235c61shortcuts
7 changed files with 61 additions and 14 deletions
@ -0,0 +1,32 @@ |
|||||||
|
/* |
||||||
|
* Created by SharpDevelop. |
||||||
|
* User: Daniel Grunwald |
||||||
|
* Date: 08.09.2005 |
||||||
|
* Time: 17:25 |
||||||
|
*/ |
||||||
|
|
||||||
|
using System; |
||||||
|
using System.Runtime.Serialization; |
||||||
|
|
||||||
|
namespace ICSharpCode.FormDesigner |
||||||
|
{ |
||||||
|
[Serializable()] |
||||||
|
public class FormDesignerLoadException : ApplicationException |
||||||
|
{ |
||||||
|
public FormDesignerLoadException() : base() |
||||||
|
{ |
||||||
|
} |
||||||
|
|
||||||
|
public FormDesignerLoadException(string message) : base(message) |
||||||
|
{ |
||||||
|
} |
||||||
|
|
||||||
|
public FormDesignerLoadException(string message, Exception innerException) : base(message, innerException) |
||||||
|
{ |
||||||
|
} |
||||||
|
|
||||||
|
protected FormDesignerLoadException(SerializationInfo info, StreamingContext context) : base(info, context) |
||||||
|
{ |
||||||
|
} |
||||||
|
} |
||||||
|
} |
||||||
Loading…
Reference in new issue