mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-20 04:48:53 +00:00
27 lines
479 B
C#
27 lines
479 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
|
|
namespace Cosmos.Kernel.API
|
|
{
|
|
|
|
/// </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
|
|
|
|
}
|
|
}
|