MTSC  1.0.5
Build TCP servers out of modules with handlers for communication, exception and logging.
IExceptionHandler.cs
1 using System;
2 using System.Collections.Generic;
3 using System.Text;
4 
5 namespace MTSC.Exceptions
6 {
10  public interface IExceptionHandler
11  {
17  bool HandleException(Exception e);
18  }
19 }
bool HandleException(Exception e)
Handles exceptions.
Handler to be used for handling exception.