Improved assembler
This commit is contained in:
16
src/errors/InvalidDirectory.go
Normal file
16
src/errors/InvalidDirectory.go
Normal file
@ -0,0 +1,16 @@
|
||||
package errors
|
||||
|
||||
import "fmt"
|
||||
|
||||
// InvalidDirectory errors are returned when the specified path is not a directory.
|
||||
type InvalidDirectory struct {
|
||||
Path string
|
||||
}
|
||||
|
||||
func (err *InvalidDirectory) Error() string {
|
||||
if err.Path == "" {
|
||||
return "Invalid directory"
|
||||
}
|
||||
|
||||
return fmt.Sprintf("Invalid directory '%s'", err.Path)
|
||||
}
|
Reference in New Issue
Block a user