summaryrefslogtreecommitdiff
path: root/http/error.go
diff options
context:
space:
mode:
Diffstat (limited to 'http/error.go')
-rw-r--r--http/error.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/http/error.go b/http/error.go
index 4771f1b..9d1c139 100644
--- a/http/error.go
+++ b/http/error.go
@@ -24,7 +24,7 @@ import (
"io"
"net/http"
- . "git.tizen.org/tools/boruta"
+ "git.tizen.org/tools/boruta"
)
// ServerError represents error that occured while creating response.
@@ -56,7 +56,7 @@ var (
// isNotFoundError returns true if passed error is of type NotFoundError.
func isNotFoundError(err error) bool {
- _, ok := err.(NotFoundError)
+ _, ok := err.(boruta.NotFoundError)
return ok
}