documentManagerClosed() 공개 정적인 메소드

public static documentManagerClosed ( ) : MongoDBException
리턴 MongoDBException
 /**
  * Throws an exception if the DocumentManager is closed or currently not active.
  *
  * @throws ORMException If the DocumentManager is closed.
  */
 private function _errorIfClosed()
 {
     if ($this->_closed) {
         throw MongoDBException::documentManagerClosed();
     }
 }