// Copyright Amazon.com Inc. or its affiliates. All Rights Reserved. // // Licensed under the Apache License, Version 2.0 (the "License"). You may // not use this file except in compliance with the License. A copy of the // License is located at // // http://aws.amazon.com/apache2.0/ // // or in the "license" file accompanying this file. This file is distributed // on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either // express or implied. See the License for the specific language governing // permissions and limitations under the License. package loader // UnsupportedPlatformError indicates an error when loading appnet container // image on an unsupported OS platform type UnsupportedPlatformError struct { error } // IsUnsupportedPlatform returns true if the error is of UnsupportedPlatformError // type func IsUnsupportedPlatform(err error) bool { _, ok := err.(UnsupportedPlatformError) return ok } // NewUnsupportedPlatformError creates a new UnsupportedPlatformError object func NewUnsupportedPlatformError(err error) UnsupportedPlatformError { return UnsupportedPlatformError{err} } // NoSuchFileError wraps the error from the os package with the message // "no such file error" type NoSuchFileError struct { error } // NewNoSuchFileError creates a new NoSuchFileError object func NewNoSuchFileError(err error) NoSuchFileError { return NoSuchFileError{err} } // IsNoSuchFileError returns true if the error is of NoSuchFileError type func IsNoSuchFileError(err error) bool { _, ok := err.(NoSuchFileError) return ok }