15 lines
270 B
C#
15 lines
270 B
C#
global using DTLib;
|
|
global using DTLib.Extensions;
|
|
global using System;
|
|
using Ben.Demystifier;
|
|
|
|
namespace DTLib.Exceptions;
|
|
|
|
public static class MyExceptionHelper
|
|
{
|
|
public static string ExToString(Exception ex)
|
|
{
|
|
return ex.ToStringDemystified();
|
|
}
|
|
}
|