---
 src/libpaje/PajeContainer.cc |    2 -
 src/libpaje/PajeSimulator.cc |   70 +++++++++++++++++++++----------------------
 2 files changed, 36 insertions(+), 36 deletions(-)

Index: b/src/libpaje/PajeContainer.cc
===================================================================
--- a/src/libpaje/PajeContainer.cc
+++ b/src/libpaje/PajeContainer.cc
@@ -239,7 +239,7 @@ void PajeContainer::demuxer (PajeEvent *
       throw PajeSimulationException ("Asked to simulate something I don't know how to simulate");
     }
   }else{
-    throw PajeSimulationException ("Unknow event id.");
+    throw PajeSimulationException ("Unknown event id.");
   }
 
   //update container endtime
Index: b/src/libpaje/PajeSimulator.cc
===================================================================
--- a/src/libpaje/PajeSimulator.cc
+++ b/src/libpaje/PajeSimulator.cc
@@ -245,7 +245,7 @@ void PajeSimulator::inputEntity (PajeObj
       CALL_MEMBER_PAJE_SIMULATOR(*this,invocation[eventId])(event);
     }
   }else{
-    throw PajeSimulationException ("Unknow event id.");
+    throw PajeSimulationException ("Unknown event id.");
   }
 }
 
@@ -285,7 +285,7 @@ void PajeSimulator::pajeDefineContainerT
   if (!containerType){
     std::stringstream line;
     line << *event;
-    throw PajeTypeException ("Unknow container type '"+type+"' in "+line.str());
+    throw PajeTypeException ("Unknown container type '"+type+"' in "+line.str());
   }
 
   std::string identifier = !alias.empty() ? alias : name;
@@ -313,7 +313,7 @@ void PajeSimulator::pajeDefineLinkType (
   if (!containerType){
     std::stringstream line;
     line << *event;
-    throw PajeTypeException ("Unknow container type '"+type+"' in "+line.str());
+    throw PajeTypeException ("Unknown container type '"+type+"' in "+line.str());
   }
 
   //search for start container type
@@ -321,7 +321,7 @@ void PajeSimulator::pajeDefineLinkType (
   if (!startcontainertype){
     std::stringstream line;
     line << *event;
-    throw PajeTypeException ("Unknow start container type '"+starttype+"' for link definition in "+line.str());
+    throw PajeTypeException ("Unknown start container type '"+starttype+"' for link definition in "+line.str());
   }
 
   //search for end container type
@@ -329,7 +329,7 @@ void PajeSimulator::pajeDefineLinkType (
   if (!endcontainertype){
     std::stringstream line;
     line << *event;
-    throw PajeTypeException ("Unknow end container type '"+endtype+"' for link definition in "+line.str());
+    throw PajeTypeException ("Unknown end container type '"+endtype+"' for link definition in "+line.str());
   }
 
   //check if the new type already exists
@@ -356,7 +356,7 @@ void PajeSimulator::pajeDefineEventType
   if (!containerType){
     std::stringstream line;
     line << *event;
-    throw PajeTypeException ("Unknow container type '"+type+"' in "+line.str());
+    throw PajeTypeException ("Unknown container type '"+type+"' in "+line.str());
   }
 
   std::string identifier = !alias.empty() ? alias : name;
@@ -382,7 +382,7 @@ void PajeSimulator::pajeDefineStateType
   if (!containerType){
     std::stringstream line;
     line << *event;
-    throw PajeTypeException ("Unknow container type '"+type+"' in "+line.str());
+    throw PajeTypeException ("Unknown container type '"+type+"' in "+line.str());
   }
 
   std::string identifier = !alias.empty() ? alias : name;
@@ -409,7 +409,7 @@ void PajeSimulator::pajeDefineVariableTy
   if (!containerType){
     std::stringstream line;
     line << *event;
-    throw PajeTypeException ("Unknow container type '"+type+"' in "+line.str());
+    throw PajeTypeException ("Unknown container type '"+type+"' in "+line.str());
   }
 
   std::string identifier = !alias.empty() ? alias : name;
@@ -440,7 +440,7 @@ void PajeSimulator::pajeDefineEntityValu
   if (!type){
     std::stringstream line;
     line << *event;
-    throw PajeTypeException ("Unknow type '"+typestr+"' in "+line.str());
+    throw PajeTypeException ("Unknown type '"+typestr+"' in "+line.str());
   }
 
   //check if the type accepts values
@@ -495,7 +495,7 @@ void PajeSimulator::pajeCreateContainer
   if (!type){
     std::stringstream line;
     line << *traceEvent;
-    throw PajeTypeException ("Unknown container type '"+typestr+"' in "+line.str());
+    throw PajeTypeException ("Unknownn container type '"+typestr+"' in "+line.str());
   }
 
   if (type->nature() != PAJE_ContainerType){
@@ -509,7 +509,7 @@ void PajeSimulator::pajeCreateContainer
   if (!container){
     std::stringstream line;
     line << *traceEvent;
-    throw PajeContainerException ("Unknown container '"+containerid+"' in "+line.str());
+    throw PajeContainerException ("Unknownn container '"+containerid+"' in "+line.str());
   }
 
   //verify if the container type is correctly informed
@@ -555,7 +555,7 @@ void PajeSimulator::pajeDestroyContainer
   if (!containerType){
     std::stringstream line;
     line << *traceEvent;
-    throw PajeTypeException ("Unknown container type '"+type+"' in "+line.str());
+    throw PajeTypeException ("Unknownn container type '"+type+"' in "+line.str());
   }
 
   //search the container to be destroyed
@@ -563,7 +563,7 @@ void PajeSimulator::pajeDestroyContainer
   if (!container){
     std::stringstream line;
     line << *traceEvent;
-    throw PajeContainerException ("Unknown container '"+name+"' in "+line.str());
+    throw PajeContainerException ("Unknownn container '"+name+"' in "+line.str());
   }
 
   //checks
@@ -596,7 +596,7 @@ void PajeSimulator::pajeNewEvent (PajeTr
   if (!container){
     std::stringstream line;
     line << *traceEvent;
-    throw PajeContainerException ("Unknown container '"+containerstr+"' in "+line.str());
+    throw PajeContainerException ("Unknownn container '"+containerstr+"' in "+line.str());
   }
 
   //search the type
@@ -604,7 +604,7 @@ void PajeSimulator::pajeNewEvent (PajeTr
   if (!type){
     std::stringstream line;
     line << *traceEvent;
-    throw PajeTypeException ("Unknown type '"+typestr+"' in "+line.str());
+    throw PajeTypeException ("Unknownn type '"+typestr+"' in "+line.str());
   }
 
   //verify if the type is a event type
@@ -651,7 +651,7 @@ void PajeSimulator::pajeSetState (PajeTr
   if (!container){
     std::stringstream line;
     line << *traceEvent;
-    throw PajeContainerException ("Unknown container '"+containerstr+"' in "+line.str());
+    throw PajeContainerException ("Unknownn container '"+containerstr+"' in "+line.str());
   }
 
   //search the type
@@ -659,7 +659,7 @@ void PajeSimulator::pajeSetState (PajeTr
   if (!type){
     std::stringstream line;
     line << *traceEvent;
-    throw PajeTypeException ("Unknown type '"+typestr+"' in "+line.str());
+    throw PajeTypeException ("Unknownn type '"+typestr+"' in "+line.str());
   }
 
   //verify if the type is a state type
@@ -706,7 +706,7 @@ void PajeSimulator::pajePushState (PajeT
   if (!container){
     std::stringstream line;
     line << *traceEvent;
-    throw PajeContainerException ("Unknown container '"+containerstr+"' in "+line.str());
+    throw PajeContainerException ("Unknownn container '"+containerstr+"' in "+line.str());
   }
 
   //search the type
@@ -714,7 +714,7 @@ void PajeSimulator::pajePushState (PajeT
   if (!type){
     std::stringstream line;
     line << *traceEvent;
-    throw PajeTypeException ("Unknown type '"+typestr+"' in "+line.str());
+    throw PajeTypeException ("Unknownn type '"+typestr+"' in "+line.str());
   }
 
   //verify if the type is a state type
@@ -760,7 +760,7 @@ void PajeSimulator::pajePopState (PajeTr
   if (!container){
     std::stringstream line;
     line << *traceEvent;
-    throw PajeContainerException ("Unknown container '"+containerstr+"' in "+line.str());
+    throw PajeContainerException ("Unknownn container '"+containerstr+"' in "+line.str());
   }
 
   //search the type
@@ -768,7 +768,7 @@ void PajeSimulator::pajePopState (PajeTr
   if (!type){
     std::stringstream line;
     line << *traceEvent;
-    throw PajeTypeException ("Unknown type '"+typestr+"' in "+line.str());
+    throw PajeTypeException ("Unknownn type '"+typestr+"' in "+line.str());
   }
 
   //verify if the type is a state type
@@ -807,7 +807,7 @@ void PajeSimulator::pajeResetState (Paje
   if (!container){
     std::stringstream line;
     line << *traceEvent;
-    throw PajeContainerException ("Unknown container '"+containerstr+"' in "+line.str());
+    throw PajeContainerException ("Unknownn container '"+containerstr+"' in "+line.str());
   }
 
   //search the type
@@ -815,7 +815,7 @@ void PajeSimulator::pajeResetState (Paje
   if (!type){
     std::stringstream line;
     line << *traceEvent;
-    throw PajeTypeException ("Unknown type '"+typestr+"' in "+line.str());
+    throw PajeTypeException ("Unknownn type '"+typestr+"' in "+line.str());
   }
 
   //verify if the type is a state type
@@ -854,7 +854,7 @@ void PajeSimulator::pajeSetVariable (Paj
   if (!container){
     std::stringstream line;
     line << *traceEvent;
-    throw PajeContainerException ("Unknown container '"+containerstr+"' in "+line.str());
+    throw PajeContainerException ("Unknownn container '"+containerstr+"' in "+line.str());
   }
 
   //search the type
@@ -862,7 +862,7 @@ void PajeSimulator::pajeSetVariable (Paj
   if (!type){
     std::stringstream line;
     line << *traceEvent;
-    throw PajeTypeException ("Unknown type '"+typestr+"' in "+line.str());
+    throw PajeTypeException ("Unknownn type '"+typestr+"' in "+line.str());
   }
 
   //verify if the type is a variable type
@@ -903,7 +903,7 @@ void PajeSimulator::pajeAddVariable (Paj
   if (!container){
     std::stringstream line;
     line << *traceEvent;
-    throw PajeContainerException ("Unknown container '"+containerstr+"' in "+line.str());
+    throw PajeContainerException ("Unknownn container '"+containerstr+"' in "+line.str());
   }
 
   //search the type
@@ -911,7 +911,7 @@ void PajeSimulator::pajeAddVariable (Paj
   if (!type){
     std::stringstream line;
     line << *traceEvent;
-    throw PajeTypeException ("Unknown type '"+typestr+"' in "+line.str());
+    throw PajeTypeException ("Unknownn type '"+typestr+"' in "+line.str());
   }
 
   //verify if the type is a variable type
@@ -951,7 +951,7 @@ void PajeSimulator::pajeSubVariable (Paj
   if (!container){
     std::stringstream line;
     line << *traceEvent;
-    throw PajeContainerException ("Unknown container '"+containerstr+"' in "+line.str());
+    throw PajeContainerException ("Unknownn container '"+containerstr+"' in "+line.str());
   }
 
   //search the type
@@ -959,7 +959,7 @@ void PajeSimulator::pajeSubVariable (Paj
   if (!type){
     std::stringstream line;
     line << *traceEvent;
-    throw PajeTypeException ("Unknown type '"+typestr+"' in "+line.str());
+    throw PajeTypeException ("Unknownn type '"+typestr+"' in "+line.str());
   }
 
   //verify if the type is a variable type
@@ -1002,7 +1002,7 @@ void PajeSimulator::pajeStartLink (PajeT
   if (!container){
     std::stringstream line;
     line << *traceEvent;
-    throw PajeContainerException ("Unknown container '"+containerstr+"' in "+line.str());
+    throw PajeContainerException ("Unknownn container '"+containerstr+"' in "+line.str());
   }
 
   //search the start container
@@ -1010,7 +1010,7 @@ void PajeSimulator::pajeStartLink (PajeT
   if (!startcontainer){
     std::stringstream line;
     line << *traceEvent;
-    throw PajeContainerException ("Unknown start container '"+startcontainerstr+"' in "+line.str());
+    throw PajeContainerException ("Unknownn start container '"+startcontainerstr+"' in "+line.str());
   }
 
   //search the type
@@ -1018,7 +1018,7 @@ void PajeSimulator::pajeStartLink (PajeT
   if (!type){
     std::stringstream line;
     line << *traceEvent;
-    throw PajeTypeException ("Unknown type '"+typestr+"' in "+line.str());
+    throw PajeTypeException ("Unknownn type '"+typestr+"' in "+line.str());
   }
 
   //verify if the type is a link type
@@ -1078,7 +1078,7 @@ void PajeSimulator::pajeEndLink (PajeTra
   if (!container){
     std::stringstream line;
     line << *traceEvent;
-    throw PajeContainerException ("Unknown container '"+containerstr+"' in "+line.str());
+    throw PajeContainerException ("Unknownn container '"+containerstr+"' in "+line.str());
   }
 
   //search the end container
@@ -1086,7 +1086,7 @@ void PajeSimulator::pajeEndLink (PajeTra
   if (!endcontainer){
     std::stringstream line;
     line << *traceEvent;
-    throw PajeContainerException ("Unknown end container '"+endcontainerstr+"' in "+line.str());
+    throw PajeContainerException ("Unknownn end container '"+endcontainerstr+"' in "+line.str());
   }
 
   //search the type
@@ -1094,7 +1094,7 @@ void PajeSimulator::pajeEndLink (PajeTra
   if (!type){
     std::stringstream line;
     line << *traceEvent;
-    throw PajeTypeException ("Unknown type '"+typestr+"' in "+line.str());
+    throw PajeTypeException ("Unknownn type '"+typestr+"' in "+line.str());
   }
 
   //verify if the type is a link type
