Uses of Class
org.apache.shiro.codec.CodecException
-
Packages that use CodecException Package Description org.apache.shiro.codec Components for encoding and decoding of data across multiple formats, especially useful in Shiro's cryptography and web functionality. -
-
Uses of CodecException in org.apache.shiro.codec
Methods in org.apache.shiro.codec that throw CodecException Modifier and Type Method Description static byte[]CodecSupport. toBytes(char[] chars, String encoding)Converts the specified character array into a byte array using the specified character encoding.static byte[]CodecSupport. toBytes(String source, String encoding)Converts the specified source to a byte array via the specified encoding, throwing aCodecExceptionif the encoding fails.static char[]CodecSupport. toChars(byte[] bytes, String encoding)Converts the specified byte array to a character array using the specified character encoding.static StringCodecSupport. toString(byte[] bytes, String encoding)Converts the specified byte array to a String using the specified character encoding.
-