github.com/moov-io/imagecashletter@v0.10.1/errors.go (about)

     1  // Copyright 2020 The Moov Authors
     2  // Use of this source code is governed by an Apache License
     3  // license that can be found in the LICENSE file.
     4  
     5  package imagecashletter
     6  
     7  import (
     8  	"errors"
     9  )
    10  
    11  var (
    12  	ErrNilFile = errors.New("given nil File")
    13  )