
ibt.ortc.extensibility.exception.OrtcInvalidCharactersException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of messaging Show documentation
Show all versions of messaging Show documentation
Realtime Cloud Messaging (ORTC) SDK for Java
/**
* @fileoverview This file contains the implementation of the empty field exception
* @author ORTC team members ([email protected])
*/
package ibt.ortc.extensibility.exception;
public class OrtcInvalidCharactersException extends Exception {
/**
*
*/
private static final long serialVersionUID = 3358079199485552190L;
public OrtcInvalidCharactersException(){
super();
}
public OrtcInvalidCharactersException(String field){
super(String.format("%s has invalid characters", field));
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy