MTSC
1.0.5
Build TCP servers out of modules with handlers for communication, exception and logging.
ExceptionThrower.cs
1
using
System;
2
using
System.Collections.Generic;
3
using
System.Text;
4
5
namespace
MTSC.Exceptions
6
{
10
public
class
ExceptionThrower
:
IExceptionHandler
11
{
12
public
bool
HandleException
(Exception e)
13
{
14
throw
e;
15
}
16
}
17
}
MTSC.Exceptions
Definition:
ExceptionConsoleLogger.cs:5
MTSC.Exceptions.ExceptionThrower
Throws all handled exceptions.
Definition:
ExceptionThrower.cs:10
MTSC.Exceptions.ExceptionThrower.HandleException
bool HandleException(Exception e)
Handles exceptions.
Definition:
ExceptionThrower.cs:12
MTSC.Exceptions.IExceptionHandler
Handler to be used for handling exception.
Definition:
IExceptionHandler.cs:10
MTSC
MTSC
Exceptions
ExceptionThrower.cs
Generated by
1.8.15