aboutsummaryrefslogtreecommitdiff
path: root/monitor/security_error.go
blob: aa036ebef50a67cd30c180aed7e109a6d6b4e1e9 (plain)
1
2
3
4
5
6
7
package monitor

type SecurityError string

func (e SecurityError) Error() string {
	return string(e)
}