public Path readSymbolicLink( final Path link )
throws UnsupportedOperationException, NotLinkException, IOException, SecurityException {
checkNotNull( "link", link );
if ( !link.toFile().exists() ) {
throw new NotLinkException( link.toString() );
}
throw new UnsupportedOperationException();
}