1 21 22 package org.armedbear.lisp; 23 24 public final class file_error_pathname extends Primitive1 26 { 27 private file_error_pathname() 28 { 29 super("file-error-pathname"); 30 } 31 32 public LispObject execute(LispObject arg) throws ConditionThrowable 33 { 34 return arg instanceof FileError ? ((FileError)arg).getPathname() : NIL; 35 } 36 37 private static final file_error_pathname FILE_ERROR_PATHNAME = 38 new file_error_pathname(); 39 } 40 | Popular Tags |