PermissionError is returned when a user lacks required permissions.
| 166 | |
| 167 | // PermissionError is returned when a user lacks required permissions. |
| 168 | type PermissionError struct { |
| 169 | msg string |
| 170 | } |
| 171 | |
| 172 | func (e *PermissionError) Error() string { |
| 173 | return e.msg |
nothing calls this directly
no outgoing calls
no test coverage detected