com.sshtools.j2ssh.transport.InvalidHostFileException Java Examples

The following examples show how to use com.sshtools.j2ssh.transport.InvalidHostFileException. You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: SftpHostVerification.java    From iaf with Apache License 2.0 2 votes vote down vote up
/**
 * Constructs the verification instance with the specified known_hosts
 * file.
 *
 * @param knownhosts the path to the known_hosts file
 * @throws InvalidHostFileException if the known_hosts file is invalid.
 */
public SftpHostVerification(String knownhosts) throws InvalidHostFileException {
	super(knownhosts);
}