15 lines
216 B
Go
15 lines
216 B
Go
package custom_errors
|
|
|
|
import (
|
|
"git.ksdemosapps.com/kylesoda/go-migrate/internal/app/models"
|
|
)
|
|
|
|
type LoaderError struct {
|
|
Batch models.Batch
|
|
Msg string
|
|
}
|
|
|
|
func (e *LoaderError) Error() string {
|
|
return e.Msg
|
|
}
|