diff --git a/fontbox/src/main/java/org/apache/fontbox/ttf/CmapSubtable.java b/fontbox/src/main/java/org/apache/fontbox/ttf/CmapSubtable.java
index 64f9482..f0759c7 100644
--- a/fontbox/src/main/java/org/apache/fontbox/ttf/CmapSubtable.java
+++ b/fontbox/src/main/java/org/apache/fontbox/ttf/CmapSubtable.java
@@ -315,7 +315,8 @@ public class CmapSubtable
      */
     protected void processSubtype14(TTFDataStream data, int numGlyphs) throws IOException
     {
-        throw new IOException("CMap subtype 14 not yet implemented");
+        // As some fonts implement this subtable, do not throw exception and just ignore
+        LOG.warn("CMap subtype 14 not yet implemented");
     }
 
     /**
