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 }