package sun.net.www.protocol.http;
import java.io.IOException;
public class Test
{
public static void main(String[] args) throws IOException
{
System.out.println(new NTLMAuthSequence(null, null, null));
}
}
Any idea on why am I getting this error?
Classloader was the issue. So solution for me was to create a jar file containing above class file and put into the jre bin folder so that it can be read by the same classloader.