vmbase: Move exceptions to aarch64 directories
This commit move ARM specific exception handling separate directories. Also use statement in Rialto and PVMFW was limited to only used exception errors, to not leak platform specific detail form libvmbase library. This commit is part of bigger refactoring enabling adding new CPU architecture to libvmbase.
Bug: 362733888
Test: m {pvmfw, rialto, vmbase_example_{bios, kernel}_bin}
Test: atest, rialto_test, vmbase_example.integration_test
Change-Id: I17b79d880b9f2fbf9317344dfcb1ce56e935531e
diff --git a/libs/libvmbase/src/arch/aarch64.rs b/libs/libvmbase/src/arch/aarch64.rs
index f888ccf..199423b 100644
--- a/libs/libvmbase/src/arch/aarch64.rs
+++ b/libs/libvmbase/src/arch/aarch64.rs
@@ -15,6 +15,7 @@
//! Wrappers of assembly calls.
pub mod dbm;
+pub mod exceptions;
pub mod hvc;
pub mod layout;
pub mod linker;