mirror of https://github.com/databricks/cli.git
Add missing file
This commit is contained in:
parent
fc07725307
commit
4aa38b8c15
|
@ -0,0 +1,16 @@
|
|||
package diag
|
||||
|
||||
type ID string
|
||||
|
||||
// For select diagnostic messages we use IDs to identify them
|
||||
// for support or tooling purposes.
|
||||
// It is a non-goal to have an exhaustive list of IDs.
|
||||
const (
|
||||
// We have many subtly different permission errors.
|
||||
// These are numbered for easy reference and tooling support.
|
||||
PathPermissionDenied ID = "EPERM1"
|
||||
ResourcePermissionDenied ID = "EPERM2"
|
||||
CannotChangePathPermissions ID = "EPERM3"
|
||||
RunAsDenied ID = "EPERM4"
|
||||
PermissionNotIncluded ID = "EPERM5"
|
||||
)
|
Loading…
Reference in New Issue