github.com/keybase/client/go@v0.0.0-20241007131713-f10651d043c8/kbfs/sysutils/errors.go (about) 1 // Copyright 2017 Keybase Inc. All rights reserved. 2 // Use of this source code is governed by a BSD 3 // license that can be found in the LICENSE file. 4 5 package sysutils 6 7 // NotImplementedError is returned on platforms where GetExecPathFromPID is not 8 // implemented. 9 type NotImplementedError struct{} 10 11 func (NotImplementedError) Error() string { 12 return "not implemented" 13 }