if (object != null)
return object;
- throw new FileNotFoundException();
+ throw new FileNotFoundException(
+ getURL() == null ? "null" : getURL().toString());
}
connect();
if (resource == null) {
- throw new FileNotFoundException();
+ throw new FileNotFoundException(
+ getURL() == null ? "null" : getURL().toString());
}
// Reopen resource
}
if ((resource == null) && (collection == null)) {
- throw new FileNotFoundException();
+ throw new FileNotFoundException(
+ getURL() == null ? "null" : getURL().toString());
}
Vector<String> result = new Vector<String>();
}
} catch (NamingException e) {
// Unexpected exception
- throw new FileNotFoundException();
+ throw new FileNotFoundException(
+ getURL() == null ? "null" : getURL().toString());
}
}
<subsection name="Catalina">
<changelog>
<fix>
+ <bug>27988</bug>: Improve reporting of missing files. (markt)
+ </fix>
+ <fix>
<bug>28852</bug>: Add URL encoding where missing to parameters in URLs
presented by Ant tasks to the Manager application. Based on a patch by
Stephane Bailliez. (mark)