almost done ackshually

This commit is contained in:
2025-01-31 17:18:35 -05:00
parent 6dcf5b9e2e
commit b09cb83017
21 changed files with 1646 additions and 3 deletions

View File

@@ -0,0 +1,14 @@
package netsplit
// Error makes a SplitErr conform to error.
func (s *SplitErr) Error() (errStr string) {
if s == nil {
errStr = "(error unknown; nil error)"
return
}
errStr = s.Wrapped.Error()
return
}