How to get property validation functions to show source file location on error?
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
Matthew Dvorsky
el 18 de Nov. de 2022
Comentada: Matthew Dvorsky
el 8 de Dic. de 2022
When using property validation functions for class propeties, if an error is thrown, MATLAB does not show the line number or any other source file information. This is in contrast to the behavior with function argument validation.
Here is an example class definition and function definition to demonstrate.
classdef ValidationClass
properties
PositiveProp {mustBePositive};
end
end
function validationFunction(PositiveArg)
arguments
PositiveArg {mustBePositive};
end
end
When I call the following code inside of a script, I get an error as expected.
validationFunction(-1);
% Prints the following error message:
% Error using error_test_script>validationFunction
% validationFunction(-1);
% ↑
% Invalid argument at position 1. Value must be positive.
%
% Error in error_test_script (line 9)
% validationFunction(-1);
This error message is useful, as it shows the exact line of code causing the error (with hyperlinks). However, when I do the same thing with class properties, I do not get a useful message.
test = ValidationClass;
test.PositiveProp = -1;
% Prints the following error message:
% Error using error_test_script
% Error setting property 'PositiveProp' of class 'ValidationClass'. Value must be positive.
This error message has much less info. It is very difficult to identify where the error occured. Is there a way to make the error message similar to that of the function argument version?
0 comentarios
Respuesta aceptada
Matt J
el 22 de Nov. de 2022
It is very difficult to identify where the error occured.
Running in debug mode will take you to the point where the error occurred:
>> dbstop if error
>>test
Más respuestas (1)
Ayush
el 22 de Nov. de 2022
Movida: Matt J
el 22 de Nov. de 2022
@Matthew Dvorsky This seems to be a requested feature which is not currently available.
0 comentarios
Ver también
Categorías
Más información sobre Argument Definitions en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!