com.flash3388.flashlib.io.UnsupportedChannelException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of flashlib.core.io Show documentation
Show all versions of flashlib.core.io Show documentation
Robotics development framework (flashlib.core.io)
The newest version!
package com.flash3388.flashlib.io;
public class UnsupportedChannelException extends RuntimeException {
public UnsupportedChannelException() {
super();
}
public UnsupportedChannelException(String message) {
super(message);
}
public UnsupportedChannelException(Throwable cause) {
super(cause);
}
public UnsupportedChannelException(String message, Throwable cause) {
super(message, cause);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy