Skip to content
Snippets Groups Projects
errors.go 146 B
Newer Older
  • Learn to ignore specific revisions
  • package nucleus
    
    import "fmt"
    
    type ErrNilClient struct {
    
    }
    
    func (e *ErrNilClient)Error() string {
    	return fmt.Sprintf("client cannot be nil")
    }