mirror of
https://github.com/Smaug123/gitea-repo-config
synced 2025-10-06 07:58:39 +00:00
11 lines
284 B
Forth
11 lines
284 B
Forth
namespace Gitea.Declarative
|
|
|
|
open System.Runtime.ExceptionServices
|
|
|
|
[<RequireQualifiedAccess>]
|
|
module internal Exception =
|
|
let reraiseWithOriginalStackTrace<'a> (e : exn) : 'a =
|
|
let edi = ExceptionDispatchInfo.Capture e
|
|
edi.Throw ()
|
|
failwith "unreachable"
|