@javatypes/amqp-client
Version:
java amqp-client types
24 lines (23 loc) • 766 B
TypeScript
declare namespace com {
namespace rabbitmq {
namespace client {
/**
* Thrown when the protocol handlers detect an unknown class number or
* method number.
*/
// @ts-ignore
class UnknownClassOrMethodId extends java.io.IOException {
// @ts-ignore
constructor(classId: number /*int*/)
// @ts-ignore
constructor(classId: number /*int*/, methodId: number /*int*/)
// @ts-ignore
readonly classId: number /*int*/
// @ts-ignore
readonly methodId: number /*int*/
// @ts-ignore
toString(): string
}
}
}
}