blob: 098d5cadf8a48e8eb5de9a7e8a778e19a4eef12a [file] [log] [blame]
Michael Anthony Knyszekd0f8a752018-12-07 00:07:43 +00001// Copyright 2017 The Go Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style
3// license that can be found in the LICENSE file.
4
Michael Anthony Knyszekd0f8a752018-12-07 00:07:43 +00005package main
6
7import (
Michael Anthony Knyszek429bae72018-12-20 20:21:45 +00008 "errors"
Michael Anthony Knyszekd0f8a752018-12-07 00:07:43 +00009)
10
Michael Anthony Knyszek429bae72018-12-20 20:21:45 +000011var errNotPermitted = errors.New("operation not permitted")