
com.att.aft.dme2.util.DME2UrlConnection Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dme2-api Show documentation
Show all versions of dme2-api Show documentation
Direct Messaging Engine dme2-api
The newest version!
package com.att.aft.dme2.util;
import java.io.IOException;
import java.net.URL;
import java.net.URLConnection;
public class DME2UrlConnection extends URLConnection
{
protected DME2UrlConnection(URL url)
{
super(url);
}
@Override
public void connect() throws IOException
{
throw new UnsupportedOperationException("The connect() method is not supported");
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy