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 {
11  {
12  public bool HandleException(Exception e)
13  {
14  throw e;
15  }
16  }
17 }
Throws all handled exceptions.
bool HandleException(Exception e)
Handles exceptions.
Handler to be used for handling exception.