URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [libgo/] [go/] [os/] [error.go] - Rev 747
Compare with Previous | Blame | View Log
// Copyright 2009 The Go Authors. All rights reserved.// Use of this source code is governed by a BSD-style// license that can be found in the LICENSE file.package os// PathError records an error and the operation and file path that caused it.type PathError struct {Op stringPath stringErr error}func (e *PathError) Error() string { return e.Op + " " + e.Path + ": " + e.Err.Error() }
