Class NoDescriptorFoundException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
edu.jiangxin.apktoolbox.convert.protobuf.supervised.NoDescriptorFoundException
- All Implemented Interfaces:
Serializable
Thrown when no suitable protobuf descriptor could be found in the
DescriptorCache
in order to decode the given binary protobuf message.- Author:
- Daniel Tischner <zabuza.dev@gmail.com>
- See Also:
-
Constructor Summary
ConstructorDescriptionCreates an instance with a default message.NoDescriptorFoundException
(String messageTypeName) Creates an instance with given error details. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
NoDescriptorFoundException
public NoDescriptorFoundException()Creates an instance with a default message. -
NoDescriptorFoundException
Creates an instance with given error details.- Parameters:
messageTypeName
- The name of the message type of the binary protobuf message that could not be decoded, can be null
-