blob: 56b760853eeb0c6c20ade5fd22f13bb1ae71a727 [file] [log] [blame]
// Copyright 2016 The Vanadium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package pattern
error (
IllegalEscapeChar() {
"en": "'%' and '_' cannot be used as escape characters",
}
InvalidEscape(escaped string) {
"en": "only '%', '_', and the escape character are allowed to be escaped, found '\\\\{escaped}'",
}
)