Home | History | Annotate | Download | only in file

Lines Matching defs:other

43     private final String other;
56 this.other = null;
66 * @param other
67 * a string identifying the other file or {@code null} if there
72 public FileSystemException(String file, String other, String reason) {
75 this.other = other;
88 * Returns the other file used to create this exception.
90 * @return the other file (can be {@code null})
93 return other;
110 if (file == null && other == null)
115 if (other != null) {
117 sb.append(other);