1
OnExceptionAspectで使用するカスタマイズされた文字列を使用したいと考えています。文字列変数をOnExceptionAspectに渡す方法
は、私は「メッセージ」という名前の文字列を作成し、その後で言う:
Method A: message = "Could not record your personal data"
Method B: message = "Could not record your date of birth" etc.
その後、OnExceptionAspectに、文字列が例外をスローした方法から得られるであろうし、得られたメッセージボックスに含めますか何でも、例えば:
If(MethodThatThrewException) has string "message";
exceptionMessage = (MethodThatThrewExption).message;
は、上記のことは可能ですかこれを行う別の方法があります。