Cosmos/source/Playgrounds/Ben/os/kernel/Cosmos.IPC/KernelErrorMessage.cs
2009-08-07 02:28:26 +00:00

27 lines
479 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Cosmos.Kernel.IPC
{
/// </summary>
public class KernelErrorMessage : KernelMessage
{
public Exception ex;
/// <summary>
/// messages must be created by the kernel
/// </summary>
public KernelErrorMessage(Exception ex)
{
this.ex = ex;
}
//static as
}
}