import { STObject } from "../STObject"; import { STMessage } from "../STMessage"; /** * Indicates that an object did not * understand the message sent to it. */ export declare class STDoesNotUnderstandException implements Error { readonly name: string; readonly message: string; constructor(receiver: STObject, message: STMessage); }