mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-19 12:30:32 +00:00
19 lines
634 B
C#
19 lines
634 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace Cosmos.Build.Windows.Config.Tasks
|
|
{
|
|
[global::System.Serializable]
|
|
public class TaskException : Exception
|
|
{
|
|
public TaskException() { }
|
|
public TaskException(string message) : base(message) { }
|
|
public TaskException(string message, Exception inner) : base(message, inner) { }
|
|
protected TaskException(
|
|
System.Runtime.Serialization.SerializationInfo info,
|
|
System.Runtime.Serialization.StreamingContext context)
|
|
: base(info, context) { }
|
|
}
|
|
}
|