blob: 5b62ab5ab54dbe2892c66e760f40a98cb2d98bdc (
plain) (
tree)
|
|
// Copyright © 2021 siddharth <s@ricketyspace.net>
// SPDX-License-Identifier: ISC
package lib
// CryptoPals Error
type CPError struct {
Err string
}
func (e CPError) Error() string { return e.Err }
|