summaryrefslogblamecommitdiffstats
path: root/lib/error.go
blob: 19d9d5de3afb6022071fadad5b8a4a04b0bae0c5 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
                                                             





                               
                  

 
                                                
// Copyright © 2021 siddharth ravikumar <s@ricketyspace.net>
// SPDX-License-Identifier: ISC

package lib

// CryptoPals Error
type CPError struct {
	Err string
}

func (e CPError) Error() string { return e.Err }