tgstation-server
The /tg/station 13 server suite
JobException.cs
Go to the documentation of this file.
1 using System;
2 
3 namespace Tgstation.Server.Host.Core
4 {
8  public sealed class JobException : Exception
9  {
13  public JobException()
14  {
15  }
16 
21  public JobException(string message) : base(message)
22  {
23  }
24 
30  public JobException(string message, Exception innerException) : base(message, innerException)
31  {
32  }
33  }
34 }
JobException()
Construct a JobException
Definition: JobException.cs:13
JobException(string message, Exception innerException)
Construct a JobException with a message and innerException
Definition: JobException.cs:30
Operation exceptions thrown from the context of a Models.Job
Definition: JobException.cs:8
JobException(string message)
Construct a JobException with a message
Definition: JobException.cs:21