mirror of
https://github.com/corda/corda.git
synced 2025-01-08 14:03:06 +00:00
10 lines
144 B
Java
10 lines
144 B
Java
package java.net;
|
|
|
|
public class URL {
|
|
private final String value;
|
|
|
|
public URL(String s) throws MalformedURLException {
|
|
value = s;
|
|
}
|
|
}
|