Error message in Buckling prm

I got this message when compiling my prm related to buckling-
"
Exception ‘ExcMessage (std::string(“Cannot seem to deserialize the data previously stored!\n”) + “Some part of the machinery generated an exception that says:\n” + e.what())’ on rank 0 on processing:


An error occurred in line <515> of file </home/jugeodynamics/aspect/source/simulator/checkpoint_restart.cc> in function
void aspect::Simulator::resume_from_snapshot() [with int dim = 2]
The violated condition was:
false
Additional information:
Cannot seem to deserialize the data previously stored!
Some part of the machinery generated an exception that says:
vector::reserve
"
How to solve this?

@Soham What the error is saying is that ASPECT cannot read the file you want to restart your simulation from. This could either be because the file is corrupted, or because you wrote it with a different version of ASPECT than you are trying to restart with. How did you create the snapshot file?

Best
W.

It was the latter issue. Anyway, I corrected it. Thanks for the response.